使用 jquery 自动完成,如何测试解析函数内的当前对象?
我有一些 jquery 自动完成代码,如下所示:
$('[name$=_ID]').autocomplete('<%=Url.Action("GetMatchingParts", "ServiceReport") %>', {
minChars: 3,
dataType: 'json',
parse: function(data) {
var rows = new Array();
for (var i = 0; i < data.length; i++) {
rows[i] = { data: data[i], value: data[i].ID, result: data[i].ID };
}
return rows;
},
formatItem: function(row) {
return row.ID + "<br />" + row.Name;
},
max: 100,
delay: 500,
cacheLength: 1,
matchContains: true,
autofill: true,
selectFirst: false,
highlight: false,
multiple: false
});
我在页面上有几个以 _ID 结尾的文本框,需要使用自动完成功能。根据页面上发生的其他事情,我有时会将单个文本框的 readonly 属性设置为 true。
当特定文本框的 readonly 属性设置为 true 时,如何禁用自动完成或返回 0 行?
I have some jquery autocomplete code like that below:
$('[name$=_ID]').autocomplete('<%=Url.Action("GetMatchingParts", "ServiceReport") %>', {
minChars: 3,
dataType: 'json',
parse: function(data) {
var rows = new Array();
for (var i = 0; i < data.length; i++) {
rows[i] = { data: data[i], value: data[i].ID, result: data[i].ID };
}
return rows;
},
formatItem: function(row) {
return row.ID + "<br />" + row.Name;
},
max: 100,
delay: 500,
cacheLength: 1,
matchContains: true,
autofill: true,
selectFirst: false,
highlight: false,
multiple: false
});
I have several text boxes on the page that end with _ID and need to use the autocomplete. Depending on other things happening on the page, I will sometimes set the readonly attribute to true for a single text box.
How can I disable the autocomplete or return 0 rows when the readonly attribute is set to true for a specific text box?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您设置“readOnly”时,添加以下语句。
或者
By the time you set 'readOnly', add the below statement.
Or