Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 jQuery 为下拉框的选定值获取更多值?我试过这个
var value = $('#dropDownId').val();
和
var value = $('select#dropDownId option:selected').val();
但两者都返回一个空字符串。
请定义,如果可以使用 AJAX。
使用 java 脚本,您可以按如下方式执行此操作
var elem = document.getElementById('dropDownId'); var selIndex = elem.selectedIndex; var val = elem.options[selIndex].value;