<title>鼠标移开事件 </title>
<script type="text/javascript">
function message(){
alert("不要移开,点击后进行慕课网!"); }
</script>
</head>
<body>
<form>
<a href="http://www.imooc.com" onmouseout="message()">点击我</a>
</form>
为什么把鼠标移开之后没有出现alert中的字,有谁遇到我一样的情况了吗?还是说需要先点击下才出现,但是那样就没有意义了吧。。。
<!DOCTYPE html> <html> <head> <title></title> </head> <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>
confirm与alert。网页显示效果一样。但 我也同样纠结他们两的区别
你少了一个</body>结束符