js重置select使其选中第一个option

写页面的时候经常会用到 select 的重置效果,也就是选中第一个 option ,下面分享几种方法:

1、JS方法:

var a = document.getElementById("mySelect"); //mySelect是select 的Id
a.options[0].selected = true;

2、jquery 中的 prop() 方法:

$("#mySelect option:first").prop("selected", 'selected');

3、jquery 设置 selectedIndex :

// jquery1.6以下版本
$('select').attr('selectedIndex', 0);
// jquery1.6或以上版本
$('select').prop('selectedIndex', 0);

4、页面中多个 select 的循环写法:

var SelectArr = $("select");
for (var i = 0; i < SelectArr.length; i++) {
	SelectArr[i].options[0].selected = true; 
}

未经允许不得转载:w3h5 » js重置select使其选中第一个option

原创文章,作者:3628473679,如若转载,请注明出处:https://blog.ytso.com/150238.html

(0)
上一篇 2021年9月13日
下一篇 2021年9月13日

相关推荐

发表回复

登录后才能评论