日期:2014-05-18  浏览次数:20602 次

怎样才能获得select中的值
怎样才能获得select中的值,就是option   value   的值,我想把option   中的值做为数据库查询语句中的like   '获得的值 '

------解决方案--------------------
request.getParameter( "yourTagName ");
------解决方案--------------------
修改select的名字,比如说吧他的name属性变成“name= "myTag "”,然后在程序里写String tag = request.getParameter( "myTag ");
注意两个myTag要相同啊
------解决方案--------------------
变量=request.getParameter( "yourTagName ");
select * from 表where字段like '变量 '

------解决方案--------------------
<Script language= "javascript ">

function query() {
alert(form1.select.options[form1.select.selectedIndex].text);
if(form1.select.options[form1.select.selectedIndex].text== "计算机 "){
return form1.select.options[form1.select.selectedIndex].text;
}else if(form1.select.options[form1.select.selectedIndex].text== "机械系 "){
return form1.select.options[form1.select.selectedIndex].text;
}else if(form1.select.options[form1.select.selectedIndex].text== "电子系 "){
return form1.select.options[form1.select.selectedIndex].text;
}else if(form1.select.options[form1.select.selectedIndex].text== "数学系 "){
return form1.select.options[form1.select.selectedIndex].text;
}
}

</script>
<form name= "form1 ">
<select name= "select ">
<option value= "0 "> 请选择 </option>
<option> 机械系 </option>
<option> 电子系 </option>
<option> 数学系 </option>
<option> 计算机 </option>
</select>
<input type= "button " value= "确定 " onclick= "query() ">
</form>
------解决方案--------------------
<在线书店系统> 大解密(全套源码 安装即用)

本系统是一个完整的JSP应用项目,合适有初步JSP编程经验的朋友们提高和学习之用。

系统含全套源码,合适朋友们在此基础上举一反三结合实际开发出优秀的JSP应用系统。

学生毕业设计好教材!

本系统是B2C模式的网上交易平台
运行环境:Tomact+JDK
编程模式:JSP+JavaBean+JavaServlet
后台数据库:MS-Access

系统主要完成的功能如下:
客户部份
.客户登录 客户注册
.图书选购(可按分类方式查询图书,或通过关键字查询)
.购物车功能
.查看图书详细情况
.查看用户的订单情况
.修改用户个人信息
.客户留言(增删改)
.书店公告(浏览)

管理部分
.现有图书管理(增、修、删、查)
.用户管理(修、删、查)
.订单管理(查看订单清单、更新订单付款、出货状况、删除订单)
.添加图书分类
.发布书店公告
.发布新书信息
.客户留言

页面模块化
.三层结构设计 程序逻辑结构分用户界面、业务逻辑处理和数据存储
.面向对象设计
.人性化设计


一套50元(bookshop.rar bookshopclass.rar 电子技术文档)

需要者请联系:

e_mail:fz lotuscn@yahoo.com.cn QQ:59 5563946(地址中空格去掉)
------解决方案--------------------
select 有value这个属性