我有一个AjaxDropDown,只要下拉列值发生变化,我就会调用onchange
事件。在ajaxstop
函数中,我将数据绑定到下拉列表并选择一些值。因此,当我使用select
时,焦点目前集中在下拉列表上。之后,每当我点击页面上的任何位置时,都会调用onchange
事件。使用select后,有没有办法将该下拉列表的焦点设置为false?
这是我的代码:
$(document).ajaxstop(function(){
var dropDown=$('#ddlDropDown').data('tDropDownList');
dropDown.select(0);
});
答案 0 :(得分:0)
为什么不将焦点设置为其他内容,最好是有用的东西:
$('#other').click(function() {
$('#target').focus();
});