为了账号安全,请及时绑定邮箱和手机立即绑定

请问这样子为什么不能触发鼠标事件?

<!DOCTYPE HTML>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>鼠标移开事件 </title>

<script type="text/javascript">

  var name=document.getElementById("first");


  name.onmouseout=function(){

      alert("相信我,frighting");

  }

</script>

</head>

<body>

<form id="first">

  <a href="http://www.imooc.com">点击我</a>

</form>

</body>

</html>


正在回答

4 回答

<!DOCTYPE HTML>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>鼠标移开事件 </title>

<script type="text/javascript">

  function message(){

    alert("不要移开,点击后进行慕课网!"); }

</script>

</head>

<body>

<form>

  <a href="http://www.imooc.com" onmouseout="message()">点击我</a>

</form>

</body>

</html>


0 回复 有任何疑惑可以回复我~

<!DOCTYPE HTML>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>鼠标移开事件 </title>

<script type="text/javascript">

window.onload = function() {

var name = document.getElementById("first");

name.onmouseout = function () {

alert("相信我,frighting");

}

}

</script>

</head>

<body>

<form id="first">

<a href="http://www.imooc.com">点击我</a>

</form>

</body>

</html>


1 回复 有任何疑惑可以回复我~

1111

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

请问这样子为什么不能触发鼠标事件?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信