87,990
社区成员
发帖
与我相关
我的任务
分享
$(function(){
$('#txtCusName').autocomplete({
source:"customer/dealpage/Customer.ashx?action=selectcus",
max: 10, //列表里的条目数
minChars: 0, //自动完成激活之前填入的最小字符
width: 400, //提示的宽度,溢出隐藏
scrollHeight: 300, //提示的高度,溢出显示滚动条
matchContains: true, //包含匹配,就是data参数里的数据,是否只要包含文本框里的数据就显示
autoFill: true, //自动填充
formatItem: function (row, i, n) {
alert(row);
return row.CusName;
},
formatMatch: function (row, i, max) {
return row.CusName + row.FirstChar+ row.ShortName;
},
formatResult: function (row) {
return row.CusName;
}
});
});
[ { "CustomerID":"115","CusName":"qweqe","FirstChar":"q","ShortName":"23"}, { "CustomerID":"116","CusName":"qeqeeq1212","FirstChar":"q","ShortName":"23"}, { "CustomerID":"117","CusName":"q","FirstChar":"q","ShortName":"2323e"} ]