Phần HTML
<body>
<form name="flogin">
Nhập Họ Tên: <input type="text" name="hoten" /><br />
nhập mật khẩu: <input type="password" name="matkhau" /><br />
<input type="button" value="đăng ký" onclick="checkinput()"/>
</form>
</body>
Phần Code Java Script
<script>
function checkinput()
{
//kiem tra user name
if(document.flogin.hoten.value=="")
{
alert("invalidEmail,vui lòng nhập email");
document.flogin.hoten.focus();
return false;
}
//kiem tra password
if(document.flogin.matkhau.value=="")
{
alert("vui long nhap mat khau");
document.flogin.matkhau.focus();
return false;
}
return true;
}
</script>
Kết Quả Đạt ĐƯợc
<body>
<form name="flogin">
Nhập Họ Tên: <input type="text" name="hoten" /><br />
nhập mật khẩu: <input type="password" name="matkhau" /><br />
<input type="button" value="đăng ký" onclick="checkinput()"/>
</form>
</body>
Phần Code Java Script
<script>
function checkinput()
{
//kiem tra user name
if(document.flogin.hoten.value=="")
{
alert("invalidEmail,vui lòng nhập email");
document.flogin.hoten.focus();
return false;
}
//kiem tra password
if(document.flogin.matkhau.value=="")
{
alert("vui long nhap mat khau");
document.flogin.matkhau.focus();
return false;
}
return true;
}
</script>
Kết Quả Đạt ĐƯợc
0 comments:
Post a Comment