猿问

option问题。

现在前台有一个option,怎么在后台接收前面选择的是哪个,并且存进数据库。望大神解答。

专业<select>

<option name="education" value="大专">大专</option>

<option name="education" value="本科" >本科</option>

<option name="education" value="研究生" >研究生</option>

</select><br/>


初学乍练2
浏览 1404回答 3
3回答

Caballarii

name应该放在select上,这样就能取到表单里的值了

maven233

var obj = document.getElementByIdx_x(”testSelect”); //定位idvar 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;
随时随地看视频慕课网APP
我要回答