我已经在 HTTPS 页面上实现了 jquery 自动完成功能,该功能适用于除 Internet Explorer 之外的所有浏览器。
在 IE 上,它不显示自动弹出列表,并显示警告为“显示所有内容”。
我已将 JSON 用于跨域请求。
这是我的代码:
function zipAutoCompletet(prefix){
jQuery( "#"+prefix+"_zip" ).autocomplete({
source: function (request, response) {
$.getJSON("http://ws.geonames.org/postalCodeSearchJSON",
{ 'postalcode_startsWith': request.term, maxRows: 12, style: "full" },
function(data) {
if(data.postalCodes){
var x = $.map( data.postalCodes, function( item ){
console.log(item)
return {
label: item.placeName + (item.adminCode1 ? ", " + item.adminCode1 : "") + ", " + item.postalCode + ", "+item.countryCode,
value: item.postalCode
}
});
response(x);
}
}
);
},
谁能告诉我如何在没有“显示所有内容”警告的情况下在 IE 中启用自动完成功能?
提前致谢。