如何在jQuery
chosen
解雇后设置焦点?
我尝试了这段代码,但没有用:
HTML:
<select id="producer_id">
<option value="a">A</option>
<option value="b">B</option>
</select>
<input type="text" name="product" id="product">
jQuery的:
$('#producer_id').chosen().change(function() {
$('#product').focus();
});
答案 0 :(得分:1)
设置正确的ID并使用:
$('#producer_id').on('change',function() {
$('#product').focus();
});