asp超链接点击统计问题
<ahref="http://www.baidu.com/"onClick="count(38);">百度</a><scripttype="text/javascript...
<a href="http://www.baidu.com/" onClick="count(38);">百度</a>
<script type="text/javascript">
function count(id){
Response.Redirect("countclick.asp")}
</script>
countclick.asp是个计数页面,目的是点击“百度”后,先通过countclick.asp计数一次,然后打开百度页面。
现在问题是,不能跳转到计数页面,请高手指点! 展开
<script type="text/javascript">
function count(id){
Response.Redirect("countclick.asp")}
</script>
countclick.asp是个计数页面,目的是点击“百度”后,先通过countclick.asp计数一次,然后打开百度页面。
现在问题是,不能跳转到计数页面,请高手指点! 展开
1个回答
展开全部
javascript 跟 vbscript混淆了...
Response.Redirect是vbscript的指令,javascript是location.href
另外你赋值的id也应该要透过QueryString带到计数页面吧?
所以应该是:
<a href="javascript:count(38,'http://www.baidu.com');">百度</a>
<script type="text/javascript">
function count(id,sUrl){
location.href="countclick.asp?id=" + id + "&sUrl=" + sUrl;
}
</script>
然后在countclick.asp中,利用Request.QueryString读取传入的id与sUrl值,例如
id = Request.QueryString("id")
sUrl = Request.QueryString("sUrl")
利用id完成对应的计数动作后,再利用
Response.Redirect(sUrl)
完成转向百度的动作
Response.Redirect是vbscript的指令,javascript是location.href
另外你赋值的id也应该要透过QueryString带到计数页面吧?
所以应该是:
<a href="javascript:count(38,'http://www.baidu.com');">百度</a>
<script type="text/javascript">
function count(id,sUrl){
location.href="countclick.asp?id=" + id + "&sUrl=" + sUrl;
}
</script>
然后在countclick.asp中,利用Request.QueryString读取传入的id与sUrl值,例如
id = Request.QueryString("id")
sUrl = Request.QueryString("sUrl")
利用id完成对应的计数动作后,再利用
Response.Redirect(sUrl)
完成转向百度的动作
追问
这个方法我会,能不能不通过中间页面转到目的页面,统计页面只做统计,然后返回,再连接目标页面
追答
是可以利用类似AJAX的方法来避开两次的跳转,也就是在访客点击时,先利用AJAX发出统计的请求,再进行跳转,理论上是可行的,但是没有实际运作过。
百度
function jb() {
var A=null;
try {
A=new ActiveXObject("Msxml2.XMLHTTP")
} catch(e) {
try {
A=new ActiveXObject("Microsoft.XMLHTTP")
} catch(oc) {
A=null
}
}
if ( !A && typeof XMLHttpRequest != "undefined" ) {
A=new XMLHttpRequest()
}
return A
}
function count(id,sUrl) {
var oBao = jb();
var strData = "code=123";
oBao.open("POST","countclick.asp?id="+id,false);
oBao.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
oBao.send(strData);
location.href = sUrl;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询