我试图用这些文件做一个简单的例子:
的index.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>
test.js:
$(document).ready(function() {
$('button').click(function() {
$.post('echo.php',{tsest:"Clicked"},function(data){
$('div').html(data);
});
});
});
echo.php:
<?php
echo $_POST['tsest'];
?>
在Chrome中,我得到结果Clicked
,但在Internet Explorer中我得到以下结果:
Notice: Undefined index: tsest in C:\wamp\www\Examples\echo.php on line 2
似乎Internet Explorer无法从AJAX请求接收POST / GET值。我刚刚在Firefox上尝试了相同的代码,似乎也不能正常工作。为什么会这样?无论如何要解决它?
提前致谢!