写道
.date-region select:visible option:selected
写道$('select.foo option:selected').val(); // get the value from a dropdown select
$('select.foo').val(); // get the value from a dropdown select even easier
$('input:checkbox:checked').val(); // get the value from a checked checkbox
$('input:radio[name=bar]:checked').val(); // get the value from a set of radio buttons
$('select.foo').val(); // get the value from a dropdown select even easier
$('input:checkbox:checked').val(); // get the value from a checked checkbox
$('input:radio[name=bar]:checked').val(); // get the value from a set of radio buttons
本文介绍了如何使用jQuery的选择器来获取网页中不同类型的表单元素的值,包括下拉框、复选框及单选按钮组等。
300

被折叠的 条评论
为什么被折叠?



