gpt4 book ai didi

php - JSON、AJAX 在 Firefox 上有效,但在 Chrome 上无效

转载 作者:行者123 更新时间:2023-11-30 00:20:59 24 4
gpt4 key购买 nike

我使用jquery、ajax和json开发了一个购物车。它在 Chrome 的本地服务器上运行良好。但是当我使用 Chrome 在服务器上运行时,它没有执行任何操作;但在 Firefox 上运行。

它不是第一次运行,但是当我从另一个页面返回时它就会运行。 http://www.scsprojectreports.com/product/coffee-berry-borer.php

JS 代码

function add_to_cart(cart_qty, cart_itemid) {
if (cart_qty <= 0 || isNaN(cart_qty)) {
my_msg('Error', 'Incorrect Quantity');
} else {
$.ajax({
type: "POST",
url: "shopping_cart.php",
data: "cart_itemid=" + cart_itemid + "&cart_qty=" + cart_qty,
success: function (json) {
$("#shopping_cart").html('');
var sub_total = 0;
$.each($.parseJSON(json), function (idx, obj) {
// alert(obj.product_name);
$("#shopping_cart").append(
'<div class="w50">' + obj.qty + ' x </div>' +
'<div class="link"><a href="sub-category-detail-view.html">' + obj.product_name + '</a></div>' +
'<div style="clear:both"></div>');
sub_total += (obj.price * obj.qty);
// alert(sub_total);
});
$("#sub_total").html('Sub-Total: Rs. ' + sub_total);
my_msg('Notification', 'Cart Updated Successfully !!');
$("#msg").html('');
},
beforeSend: function () {
$("#msg").html('<img src="loading.gif" align="absmiddle" alt="Loading...">');
}
});
}
}

PHP 代码

<div style="background: #F7F7F7; border: 1px solid #DDDDDD; padding: 10px;">Qty:
<input type="text" name="qty" id="qty" size="3" value="1">
<a class="button" style="cursor:pointer;" onClick="add_to_cart($('#qty').val(),'<?php echo $fetchline['id'];?>')"><span>Buy</span></a>
<span id="msg" style="text-align:center; padding:6px; color:#EB679F; font-weight:bold; font-size:14px;"></span>
<br>
</div>

最佳答案

尝试使用启动 Google Chrome 并禁用网络安全。如果您使用的是 Windows 7,则以管理员身份启动命令提示符(右键单击 CMD 并选择以管理员身份运行)并粘贴以下代码

C:\Users\admin\AppData\Local\Google\Chrome\Application\chrome.exe --disable-web-security

这里如果您的chrome安装路径不同,则按照您的方式更改路径。

关于php - JSON、AJAX 在 Firefox 上有效,但在 Chrome 上无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23236715/

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