可能重复:
How can you programmatically tell an HTML SELECT to drop down (for example, due to mouseover)?
Show select dropdown in jQuery?
假设我有一个像这样的选择元素:
<div>
<label>Colors</label>
<select class="clients">
<option selected="selected">All</option>
<option>Blue</option>
<option>Green</option>
<option>Yellow</option>
<option>Brown</option>
</select>
<img class="select-arrow" src="images/select-arrow.png" />
</div>
我对如何通过点击图片下拉选项列表非常感兴趣,现在我已经尝试了
$('document').ready(function(){
$('.select-arrow').click(function(){
$('.clients').focus();
})
})
但没有被提升。
提前致谢!