gpt4 book ai didi

php - 在 Safari 中,为什么 jQuery AJAX 调用后 $_POST 数组为空?

转载 作者:行者123 更新时间:2023-11-28 09:12:47 25 4
gpt4 key购买 nike

仅在 Safari 中,使用 jQuery AJAX 调用发布时,为什么 $_POST 数组为空?

IE、Firefox 和 Chrome 均正确输出。

<html>
<head>
<script src="http://code.jquery.com/jquery-1.9.1.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(
function()
{
$.ajax(
{
type: "POST",
url: "target.php",
dataType: "xml",
data: ({
'param1': 'param1'
}),
success: function()
{
}
});
});
</script>
<title></title>
</head>
<body>

</body>
</html>

文件target.php包含以下代码:

<?php print_r($_POST); ?>

并输出以下内容:

Array
(
)

最佳答案

尝试删除 data 中的 ()

关于php - 在 Safari 中,为什么 jQuery AJAX 调用后 $_POST 数组为空?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16108274/

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