<title>无标题文档</title>
<script type="text/javascrip>
function check(){
var un = document.getElementById("text1");
var pw1 = document.getElementById("password1");
var pw2 = document.getElementById("password2");
if(un.value == "" || pw1.value == "") {
alert("用户名或密码不能为空");
return false;
}
if( pw1.value!=pw2.value){
alert("密码与确认密码不一致");
return false;
}
}
</head>
你在关闭head前加上</script>试试
我发代码给你看看吧:
<title>无标题文档</title>
<script type="text/javascrip>
function check(){
var un = document.getElementById("text1");
var pw1 = document.getElementById("password1");
if(un.value == "" || pw1.value == "") {
alert("用户名或密码不能为空"); var pw2 = document.getElementById("password2");
return false;
}
if( pw1.value!=pw2.value){
alert("密码与确认密码不一致");
return false;
}
}
</head>
截图看看啊