var show = function(){
document.getElementById('test').click();
}
show();
<select name="test" id="test">
<option value="a">first</option>
<option value="b">Second</option>
<option value="c">Third</option>
</select>
您好,我想手动打开选择框而不单击它,所以我试图在选择框上触发此click事件,但这不起作用。
我什至在google中搜索了如何打开选择框,但显示的答案并不是我真正想要的,我已经看到它们扩展了我不想要的选择框。
请检查我到目前为止编写的代码
我想要没有jQuery的纯JavaScript语言 预先感谢