javaScript脚本进行登陆界面用户名和密码的合法性验证怎么写?_百度...

发布网友 发布时间:2022-04-24 03:13

我来回答

1个回答

热心网友 时间:2022-04-20 22:04

<form name="login" id="login" method="POST" action="URL" onsubmit="return checkform();">
用户名:<input type="text" id="username" name="username" />
密 码:<input type="password" id="password" name="password" />
<input type="submit" value="登陆"/>
<form/>
<script type="text/javascript">
function checkform()
{
if(document.getElementById('username').value=='')
{
alert('用户名不能为空!');
return false;
}
if(document.getElementById('password').value=='')
{
alert('密码不能为空!');
return false;
}
}
</script>

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com