现在前台有一个option,怎么在后台接收前面选择的是哪个,并且存进数据库。望大神解答。专业<select><option name="education" value="大专">大专</option><option name="education" value="本科" >本科</option><option name="education" value="研究生" >研究生</option></select><br/>
3 回答
maven233
TA贡献5条经验 获得超3个赞
var obj = document.getElementByIdx_x(”testSelect”); //定位id
var index = obj.selectedIndex; // 选中索引
var text = obj.options[index].text; // 选中文本
var value = obj.options[index].value; // 选中值
jQuery中获得选中select值
第一种方式
$('#testSelect option:selected').text();//选中的文本
$('#testSelect option:selected') .val();//选中的值
$("#testSelect ").get(0).selectedIndex;//索引
第二种方式
$("#tesetSelect").find("option:selected").text();//选中的文本
…….val();
…….get(0).selectedIndex;
- 3 回答
- 0 关注
- 1403 浏览
添加回答
举报
0/150
提交
取消