关于鼠标移开事件
<script type="text/javascript">
function message()
{
alert("点击后进入慕课网!");
}
</script>
<style>
a{
text-decoration:none;
color:blue;
}
a:hover{
color:red;
}
</style>
</head>
<body>
<form onmouseout="message()">
<a href="http://www.imooc.com" >慕课网</a>
</form>
</body>
为什么链接不到慕课网去