我试图用这些文件做一个简单的例子:
索引.php:
<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="test.js"></script>
</head>
<body>
<button>click to alert data</button>
<div></div>
</body>
</html>
测试.js:
$(document).ready(function() {
$('button').click(function() {
$.post('echo.php',{tsest:"Clicked"},function(data){
$('div').html(data);
});
});
});
回声.php:
<?php
echo $_POST['tsest'];
?>
在 Chrome 中,我得到了 result Clicked
,但在 Internet Explorer 中,我得到了这个结果:
Notice: Undefined index: tsest in C:\wamp\www\Examples\echo.php on line 2
似乎 Internet Explorer 无法接收来自 AJAX 请求的 POST/GET 值。我刚刚在 Firefox 上尝试了相同的代码,但似乎效果不佳。为什么会这样?有什么办法解决吗?
提前致谢!