我正在使用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
}