1

我尝试为客户代码实现自动完成功能。

谁能告诉我为什么下面的代码在 safari(IPAD) 浏览器中不起作用?

它在 Chrome 和 Firefox 中完美运行,但在 Safari 中却不行。

<script type="text/javascript">    

$("#mainPage").on("pageshow", function (e) {

var sugList = $("#suggestions");

$("#CustomerCode").on("input", function (e) {
var text = $(this).val();

if (text.length < 1) {
    sugList.html("");
    sugList.listview("refresh");
} 
else {
      $.ajax({ cache: false,
      type: 'GET',
      dataType: 'json',
      url: '/Lookup/GetCustomer',
      data: { filterCustomerCode: text },
      success: function (res, code) {
      var str = "";
      for (var i = 0, len = res.length; i < len; i++) {
      str += '<li data-icon="arrow-r"><a href="/home/index?CustomerCode=' + res[i].Code + '" >' + res[i].Code + '</a></li>';
}
sugList.html(str);
sugList.listview("refresh");
console.dir(res);
},
async: true
});
}
});

});

</script>

非常感谢,

马杜兰加

4

0 回答 0