问答详情
源自:6-4 鼠标移开事件(onmouseout)

求大神们指导事件

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>onmouseout</title>
<script type="text/javascript
">
function message (){
    confirm("不要离开,只要输入密码,再单击登录,就OK了!");}
</script>
</head>

<body>
<form>
 密码:<input name="password" type="text">
<input name="button" type="button" value="登录" onmouseout"message()"/>
</form>
</body>
</html>

为什执行结果不是下图了???????http://img.mukewang.com/58553ff900010d1804760385.jpg

提问者:ART原艺美学 2016-12-17 21:39

个回答

  • 中你说十块就十块
    2016-12-18 09:51:48

    input标签里,onmouseout="message()"才对

  • 枫血雨痕
    2016-12-18 09:33:41

    在input中,换成onmouseout="message()"试试