asp 怎么用隐藏链接地址的脚本
想把我的网页上的链接显示的地址隐藏,脚本如下:<script>
function hideinfo(){
if(event.srcElement.tagName=="A{ window.status=event.srcElement.innerText
}
}
document.onmouseover=hideinfo
document.onmousemove=hideinfo
document.onmousedown=hideinfo
</script>
<a href="http://127.0.0.1">网络图</a>
怎么用都不好使,是不是脚本存放位置不对,应该怎么使用?
答案:<script>
function hideinfo(){
if (event.srcElement.tagName=='A')
{
window.status=event.srcElement.innerText
}
}
document.onmouseover=hideinfo
document.onmousemove=hideinfo
document.onmousedown=hideinfo
</script>
<a href=>http://127.0.0.1">网络图</a>
我这个好用,你的A在引号外面了,好想你的{也不对。
其他:IE下可以啊
if (event.srcElement.tagName=='A')
{
这个{ 写成中文的了
上一个:asp留言板,怎么让一个页面显示多条留言?
下一个:asp如何返回当前页面