我正在使用autocomplete
jQuery插件,但我遇到了两个主要问题。
autocomplete
函数textbox
的值以通过功能Html
<input id="txtDemo" type="text" />
的js
$("#txtDemo").autocomplete({
source: availableTags
});
这是我的功能,值是textbox
function Demo (value)
{
//code for getting value from code behind in the form of array
}
答案 0 :(得分:3)
您可以添加像这样的事件处理程序
$('#txtDemo').on('change', function(){
var value = $(this).val();
Demo (value); //pass the value as paramter
});
//Handle it here
function Demo (value) {
//code for getting value from code behind in the form of array
}
来自您的评论:可以使用select
select( event, ui )Type: autocompleteselect
从菜单中选择项目时触发。默认操作 是用所选的值替换文本字段的值 项目
$("#txtDemo").autocomplete({
source: availableTags,
select: function( event, ui ) {
demo(ui.item.value);
}
});
以下是示例working fiddle
希望你能理解。