发布网友 发布时间:2022-04-22 22:17
共4个回答
热心网友 时间:2022-05-03 04:06
获取下拉框选中的值的编号的方法:
使用selectedIndex属性来获取,如:
<select id='sc'>
<option value=a>a</option>
<option value=b>b</option>
<option value=c>c</option>
</select>
js:
var d = document.getElementById("sc");
alert(d.selectedIndex);
如图:
热心网友 时间:2022-05-03 05:24
var selectedItem = select.options(select.selectedIndex);//获取当前选中项热心网友 时间:2022-05-03 06:59
document.getElementsByName("youItemName").value;热心网友 时间:2022-05-03 08:50
通过表单拿到