快速的問題。我是否可以使用JQuery來模擬點擊選擇框(不考慮選擇框的ID或類)。 div中只有一個選擇框。在此先感謝模擬單擊div內的選擇框時點擊div
下面是HTML:
<div class="custom-select">
<select id="operator_select">
<option value="1">1</option>
<option value="2">2</option>
<select>
</div>
Jquery的代碼,我想:
$(function(){
$(".custom-select").click(function(){
$('select',this).click();
});
});
這裏有一個小提琴:http://jsfiddle.net/arjdev/5Sch2/
你是不是想以編程方式打開下拉菜單? http://stackoverflow.com/questions/13234971/simulate-click-on-select-element-with-jquery – George
是的,我正在這樣做。 @oGeez – ArJ