首页 > 开发 > AJAX > 正文

判断请求头中是否含有某属性来判断是否是ajax请求

2024-09-01 08:32:29
字体:
来源:转载
供稿:网友
本文为大家介绍下如何判断请求头中是否含有某属性来判断是否时ajax请求,具体示例如下

复制代码 代码如下:


<html>
<head>
<script language="javascript">

function cl()
{
var xmlhttp;

if (window.XMLHttpRequest)
{
xmlhttp=new XMLHttpRequest();
}
else
{
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}


xmlhttp.open("POST","ajax2.html",true);
xmlhttp.setRequestHeader ("Content-Type","application/x- www-form-urlencoded");
//jquery YUI默认会发送一个含有HTTP_X_REQUESTED_WITH的HTTP请求头消息,因此,可以通过判断请求头中是否含有该属性来判断是否时ajax请求
xmlhttp.setRequestHeader('HTTP_X_REQUESTED_WITH', 'HTTP_X_REQUESTED_WITH');
xmlhttp.send();

xmlhttp.onreadystatechange=function()
{
if(xmlhttp.readyState==4 && xmlhttp.status==200)
{
alert(xmlhttp.responseText);
}
}
}

</script>
</head>
<body>
<input type="button" value="OK" />
</body>
</html>

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表