怎么触发不了onmouseover实践,求解!

来源:6-3 鼠标经过事件(onmouseover)

天地4638

2016-07-31 20:34

<!DOCTYPE HTML>

<html>

<head>

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

<title> 鼠标经过事件 </title>

<script type="text/javascript">

    function message(){

      confirm("请输入密码后,再单击确定!"); }

</script>

</head>

<body>

<form>

密码:<input name="password" type="password" />

    <input name="确定" type="button" value="确定" onmouserover="message()"/>

</form>

</body>

</html>


写回答 关注

2回答

  • 水里有条鱼
    2016-07-31 21:16:58
    已采纳

    onmouserover="message()"/> 写错了吧,是onmouseover

    天地4638

    非常感谢!

    2016-10-17 15:11:39

    共 1 条回复 >

  • 上进3797464
    2016-08-17 17:06:27

    onmouseover="message()"的onmouseover错了

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468060 学习 · 21891 问题

查看课程

相似问题