本文介绍了jquery tokeninput过滤器查询发送额外参数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何为查询设置额外的参数,例如

How can I set extra parameters to the query like

q=myseed&filter=1,2,34

附加事件会更好喜欢

onFocus:function(){
  //retrieve extra params
}

这是插件的链接 - http://loopj.com/jquery-tokeninput/

推荐答案

你可以这样做,在下面的示例中,我将两个额外的参数传递给 tokenInput url.

Here is how you could do it, in the example below I am passing two extra param to the tokenInput url.

this.$("#abcTextbox").tokenInput("url?someParam1=cricket&someParam2=yasser", {
    queryParam: "q"
});

来源

这篇关于jquery tokeninput过滤器查询发送额外参数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 23:19