gpt4 book ai didi

javascript - jQuery 组合框附加模糊事件

转载 作者:行者123 更新时间:2023-12-03 10:12:33 26 4
gpt4 key购买 nike

我指的是以下网址http://jqueryui.com/autocomplete/#combobox在我的 HTML 页面中呈现组合框。我想将模糊事件附加到组合框,以便当用户单击组合框然后移动到下一个字段时,我可以触发验证消息。在搜索时,我发现只有一个可以附加的选择事件,当您从组合框中选择一个值时会触发该事件。

HTML 代码

  @Html.DropDownListFor(m => m.Reason, new SelectList(ViewBag.SelectReason, "Key", "Value"), "", new { id = "drop2", placeholder = "Select Reason" })

Jquery 代码:

  $("#drop2").blur(function () {
// here goes your code
alert("blur");
});

有什么方法可以触发 onBlur 事件吗?

最佳答案

您的页面中应该仍然有类似的内容才能启用 combobox :<select id="combobox">

然后就可以直接使用jquery来申请 blur事件于 select元素:

$("#combobox").blur(function(){
// here goes your code
}

关于javascript - jQuery 组合框附加模糊事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30043489/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com