undefined
发出 ajax 请求时,IE 9 返回而不是数据存在问题。它适用于 Firefox、Chrome、Opera。我试图在 get.php 中设置一些标题。但这没有帮助。
我的代码如下:
<head>
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
$.ajax({
type : "GET",
url : "get.php",
data : "id=1234&lang=en",
dataType : 'html',
success : function( msg ) {
alert( "Data Saved: " + msg);
}
});
});
</script>
</head>