使用select by jquery后从mvc ajax下拉列表中删除焦点

时间:2013-04-17 08:57:45

标签: javascript jquery asp.net-mvc-3 asp.net-mvc-3-areas

我有一个AjaxDropDown,只要下拉列值发生变化,我就会调用onchange事件。在ajaxstop函数中,我将数据绑定到下拉列表并选择一些值。因此,当我使用select时,焦点目前集中在下拉列表上。之后,每当我点击页面上的任何位置时,都会调用onchange事件。使用select后,有没有办法将该下拉列表的焦点设置为false?

这是我的代码:

$(document).ajaxstop(function(){
    var dropDown=$('#ddlDropDown').data('tDropDownList');
    dropDown.select(0);
});

1 个答案:

答案 0 :(得分:0)

为什么不将焦点设置为其他内容,最好是有用的东西:

$('#other').click(function() {
  $('#target').focus();
});