jQuery.autoComplete 多参数
Posted 大西瓜3721
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery.autoComplete 多参数相关的知识,希望对你有一定的参考价值。
query 版本 1.3.2
插件默认的 参数 是q 如果需要传递多个参数呢?
$("#stylistname").autocomplete("/page/autostylistname.php", {
minChars: 0,
extraParams: {shopid:function(){return $(‘#shopid‘).val();}},
width: 170,
selectFirst: false,
dataType: "json",
formatResult: function(data) { return data.name; },
parse: function(data) { return $.map(data, function(row) { return { data: row, value: row.name, result: row.name } }); },
formatItem: function(item) { if(item.jobnumber.indexOf(‘号‘)>-1){ return item.name+‘ ‘+item.jobnumber; } return item.name+‘ ‘+item.jobnumber+‘号‘; } });
红色部分即为需要的参数
html页面
<input id=‘shopid‘ value=‘‘/>
在php 页就可以 用 $_GET[‘shopid‘] 获取了
以上是关于jQuery.autoComplete 多参数的主要内容,如果未能解决你的问题,请参考以下文章
jQuery.Autocomplete实现自动完成功能(详解)