gpt4 book ai didi

javascript - 为什么ajax调用在IE7上不起作用

转载 作者:行者123 更新时间:2023-11-28 15:53:23 25 4
gpt4 key购买 nike

我正在为我工​​作的公司开发一个应用程序,但此 ajax 调用仅适用于 IE9+、FF、Chrome 。我一直在阅读,但运气不佳。这是我的代码。它非常简单:

var request_getShoppingCart = $.ajax({
url:"classes/sCart.php?action=getItems",
cache: false,

});
request_getShoppingCart.done(function(Data) {
$('#shoppingCart').html(Data);
});

感谢任何帮助

最佳答案

IE 失败,尾随逗号

var request_getShoppingCart = $.ajax({
url:"classes/sCart.php?action=getItems",
cache: false //remove comma here

});
request_getShoppingCart.done(function(Data) {
$('#shoppingCart').html(Data);
});

<小时/>另请阅读

jQuery .ajax method in IE7 & IE6 not working but working fine in Firefox

Does Internet Explorer 9 choke on extra commas at the end of array and object literals?

关于javascript - 为什么ajax调用在IE7上不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19791328/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com