|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?注册
x
Jquery对下拉框select默认选中和获取下拉框中值的。当select元素的值发生改变时,会发生触发change事件,触发后再去获取或设置子节点。
1.默认选中第一个
$("select option:first").prop("selected", 'selected');2.选中指定的option
$("select option").eq(1).prop("selected", 'selected');3.选中最后一个option
$("select option:last").prop("selected", 'selected');4.获取下拉框选择的值
方法1:
$('select').change(function(){ var xuanzhong=$(this).val(); });方法2:
$('select').change(function(){ var xuanzhong = $(this).children('option:selected').val(); //或 var xuanzhong = $(this).find('option:selected').val(); }); |
|