自动完成 jquery
我正在使用自动完成 jquery。我起诉的代码是这样的:
$(function() {
$( "#search").keyup(function(){
var cat=$("#categoryTag option:selected").text();
var url = "${resource.path}.suggestion.$"+this.value+".$"+cat+".json";
$(this).autocomplete({
source: url,
minLength: 2,
appendTo: "#search_results_div"
});
});
它工作正常,但我得到的网址是这样的 http://servername/pagename/suggestion.textboxValue.dropdownValue?term=textBoxVale
我的问题是如何避免查询字符串,因为我想要我的网址这个 http://servername/pagename/suggestion.textboxValue.dropdownValue
请给我指点。提前致谢
I am using a autocomplete jquery. Code I am suing is something like this:
$(function() {
$( "#search").keyup(function(){
var cat=$("#categoryTag option:selected").text();
var url = "${resource.path}.suggestion.$"+this.value+".$"+cat+".json";
$(this).autocomplete({
source: url,
minLength: 2,
appendTo: "#search_results_div"
});
});
It is working fine, but The url I am getting is something like this http://servername/pagename/suggestion.textboxValue.dropdownValue?term=textBoxVale
My question is How can I avoid the query string as I want my url like this
http://servername/pagename/suggestion.textboxValue.dropdownValue
Please give me pointers. Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
source
可以是一个回调,您可以在其中使用 ajax 任何您想要的 url:source
can be a callback in which you can ajax any url you want: