gpt4 book ai didi

asp.net-mvc - jquery ui helper mvc Select 事件

转载 作者:行者123 更新时间:2023-12-03 12:11:55 25 4
gpt4 key购买 nike

我正在尝试访问“ 选择 ”事件,当用户从 jquery ui 自动完成填充列表中选择时我想在 jquery ui 自动完成“ 选择 ”事件时触发一个事件。
我的问题是
我正在使用 JqueryUiHelper MVC,但不知道如何使用 htmlHelper http://jqueryuihelpers.apphb.com/Docmo/Autocomplete 使用选择事件

@using JQueryUIHelpers
@Html.JQueryUI().AutocompleteFor(x => x.SearchText, Url.Action("SearchFilter"), new { @class = "form-control", placeholder = "Company name here for search..", style = "max-width:none;" }
)
@section Styles {
@Styles.Render("~/Content/jqueryui")
}

@section Scripts {
@Scripts.Render("~/bundles/jqueryui")
}

任何帮助将不胜感激。

最佳答案

我提供了来自 https://api.jqueryui.com/autocomplete/#event-select 的解决方案
将事件监听器绑定(bind)到 autocompleteselect 事件:

$(function () {
$("#SearchText").on("autocompleteselect", function (event, ui) {

event.preventDefault();
$(this).val(ui.item.value);
$('#btnGo').click();

});
});

关于asp.net-mvc - jquery ui helper mvc Select 事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41239104/

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