如何通过 mouseover 和 mouseout 更改 window 状态?
How to change the window status with mouseover and mouseout?
我想在鼠标悬停在 link 上时更改状态 window 的文本。我的 link 的名字是:Hipervinculo。
然后,当鼠标移出 link 时,它应该会出现不同的文本。
到目前为止,这是我的 html,但它不起作用。
有人可以解释我该怎么做吗?
非常感谢!
<html>
<head>
<meta charset="UTF-8">
<title>Práctica 4</title>
<script type="text/javascript">
function info(txt){
window.status="txt";
}
function info2(txt){
window.status= "txt"
}
</script>
</head>
<body>
<a href="Gato.html" ONMOUSEOVER="info('Por encima del hipervinculo...');return true;" ONMOUSEOUT="info2('Fuera del hipervínculo…');return true;" id="Enlace">Hipervínculo</a>
</body>
</html>
出于安全原因,window.status 在大多数(如果不是全部)浏览器中被禁用(可以通过这种方式伪造链接的不同位置)。
我想在鼠标悬停在 link 上时更改状态 window 的文本。我的 link 的名字是:Hipervinculo。 然后,当鼠标移出 link 时,它应该会出现不同的文本。 到目前为止,这是我的 html,但它不起作用。 有人可以解释我该怎么做吗? 非常感谢!
<html>
<head>
<meta charset="UTF-8">
<title>Práctica 4</title>
<script type="text/javascript">
function info(txt){
window.status="txt";
}
function info2(txt){
window.status= "txt"
}
</script>
</head>
<body>
<a href="Gato.html" ONMOUSEOVER="info('Por encima del hipervinculo...');return true;" ONMOUSEOUT="info2('Fuera del hipervínculo…');return true;" id="Enlace">Hipervínculo</a>
</body>
</html>
window.status 在大多数(如果不是全部)浏览器中被禁用(可以通过这种方式伪造链接的不同位置)。