各位看一下那里错了,为什么没有弹出对话框
........
2015-06-14
<!DOCTYPE HTML>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title> 失焦事件 </title>
<script type="text/javascript">
function message(){
alert("请确定已输入密码后,在移开!"); }
function add(){
alert("请输入我爱你");
}
</script>
</head>
<body>
<form>
用户:<input name="username" type="text" value="请输入用户名!" onfocus="add()" ><br>
密码:<input name="password" type="text" value="请输入密码!" onblur="message()">
</form>
</body>
</html>你复制下这个代码,运行下,我就只改了分号。
举报