jquery中ajax超时处理
2010-09-14 13:08:50 来源:WEB开发网核心提示:[示例代码] <html><head><script src="jquery-1.2.js"></script><script>$(document).ready(function () {$.ajax({url: "ajax.e
[示例代码]
<html>
<head>
<script src="jquery-1.2.js"></script>
<script>
$(document).ready(
function () {
$.ajax({
url: "ajax.error.php",
timeout: 1000,
error: function (xmlHttpRequest, error) {
console.info(xmlHttpRequest, error);
}
});
}
);
</script>
</head>
</html>
更多精彩
赞助商链接