javascript 去掉窗体左下角地址的源码

来源:百度知道 编辑:UC知道 时间:2024/05/28 04:06:05
帮个忙吧

在a标记中加入
onmouseover="window.status='状态栏的地址没了';return false;"
如果你觉得页面有好多链接需要改动那你就在页面的body标签里加以上代码

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>
<head>
<title>Untitled</title>
</head>
<script>
function test(){

alert("你看不见我的状态吧?")
}

</script>
<body>

<a href="#" onmouseover="window.status='none'; return true" onclick="test()">看不见</a>
<a href="dfdfdfdfdf">看得见</a>
</body>
</html>

呵呵 其实只要给A添加onmouseover="return true"就会阻止在状态栏显示

<a href="#" onmouseover="return true">......</a>