我正在使用jquery Ui自动完成库,一切都运行良好,但我遇到了一个问题,即在网址末尾放置的“terms =”。
我需要的是查看“www.mysite.com/searchTerms=[searchvar]”的来源,现在它自动将“terms = [searchvar]”放在我输入的任何网址的末尾。
$("#tags").autocomplete({
source: 'http://www.mysite.com/search/autoComplete.mi?searchTerm=',
});
有了这个,如果我输入'horse',那么当我需要它时,它会查找网址“http://www.mysite.com/search/autoComplete.mi?searchTerm=&term=horse” “http://www.mysite.com/search/autoComplete.mi?searchTerm=horse”
html
<div class="ui-widget">
<label for="tags">Tags: </label>
<input id="tags" />
</div>
我查看了文档但找不到任何内容
答案 0 :(得分:0)
您可以使用tags对象中的属性来执行此操作:
$("#tags").autocomplete({
source : 'http://www.mysite.com/search/autoComplete.mi?searchTerm='+
$(this).attr("searchvalue"),
});