问答详情
源自:6-3 鼠标经过事件(onmouseover)

为什么我写的代码当鼠标划过时没有出现确定框?

<!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="确定"

 onmouseover="message()"/>

</form>

</body>

</html>


提问者:qq_慕前端4556266 2020-04-19 11:07

个回答

  • 幕布斯_word
    2020-04-23 03:00:06

    你这是对的,再确认几次就好了,这题任务给的是在13行输入有问题,是在下面输入就对了

  • qq_慕前端4556266
    2020-04-19 11:08:51

    出现了,出现了,代码没问题