IE10和Chrome中有一些不同。
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script type="text/javascript">
function onClick() {
$.ajax({
type: "POST",
url: "WebService.asmx/HelloWorld",
dataType: "json",
contentType: "application/json; charset=utf-8",
success: function (json) { alert(json.d); },
error: function (error) {
alert("Error:" + error.responseText);
}
});
}
</script>
</head>
<body>
<a href="http://www.google.com" onclick="onClick()" target="_blank"> CallBack</a>
</body>
</html>
当我在Chrome浏览器中浏览页面时,它会提示错误:,没有错误。响应测试,然后转到google.com。 当我在IE10中浏览页面时,它会提示Hello World,并且没有注意。