南京 上海 广州 杭州 >//1.给按钮注册事件var btnSet = document.getElementById("btnSet");btnSet.onclick = function() {//2.获取下拉框中的所。设置下拉框中的选中项。" />

设置下拉框中的选中项

点击设置按钮下拉框随机选中

设置下拉框中的选中项 - 锐客网 ="selCities"> > //1.给按钮注册事件 var btnSet = document.getElementById("btnSet"); btnSet.onclick = function() { //2.获取下拉框中的所有option var selCities = document.getElementById("selCities"); var options = selCities.getElementsByTagName("option"); //3.随机生成索引 //Math.random()->[0,1) //Math.random()*4->[0,4) var randomIndex = parseInt(Math.random() * options.length); //4.根据索引获取option,并让option选中 var option = options[randomIndex]; option.selected = true; }

    推荐阅读