刚学js代码有点不对,请看一下
<html>
<head>
<title>
例子
</title>
<script language="javaScript">
function show(){
if(username.value==""){
alert("输入的名字不能为空");
}
}
</script>
</head>
<body>
<form name='form1' action='' method='post'>
<br>用户名<input type='text' name='username'>
<br>密 码<input type='password'>
<br><input type='submit' value='登陆' onClick=show()><input
type='submit' value='取消'>
</body>
</html>
有点不对,不能对话框出不来,请帮忙改下