jsp中javascript的delay go to URL有问题
我在JSP中嵌入了如下语句:<script language="JavaScript" type="text/javascript">
<!--
function delayURL(url, time) {
setTimeout("top.location.href='" + url + "'", time);//过多少时间执行时间前面的那个语句
}
-->
</script>
<!-- Place this in the 'body' section -->
<a href="javascript:" onClick="delayURL('BBSproTree.jsp','3000')" >3秒钟后页面将自动跳转会论坛首页,若无跳转请点击此链接</a>
结果:“3秒钟后页面将自动跳转会论坛首页,若无跳转请点击此链接”这个链接一直存在不自动跳转,点击此链接又能跳转,请问有什么问题吗?