Michael_O_O_
2015-01-12 17:08
我想实现的是,点击确定后,会去判断密码框是否有密码,若没有密码,则不行……
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title> 鼠标经过事件 </title> <script type="text/javascript"> function message(){ var aaa=document.getElementById("password").value; if(aaa==""){ confirm("请输入密码后,再单击确定!") } } </script> </head> <body> <form> 密码:<input name="password" type="password" id="password"> <input name="确定" type="button" value="确定" onmouseover="message()"/> </form> </body> </html>
$("#pass").val(); 跟这个 document.getElementById("pass").value; 是一样的 , 只不过是前面那个好一点 ,
function message(){
var passValue = $("#pass").val();
alert("输入的密码是 : " + passValue);
if(passValue == null || passValue == ""){
alert("密码不能为空。。");
return;
}else{
}
}
这样看看,
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title> 鼠标经过事件 </title>
<script type="text/javascript">
function message(){
var mess=confirm("请输入密码后,再单击确定!");
if(mess==true)
{
var me=getElementById("pass");
if(me=="")
{
alert("请输入密码!")
}
}
}
</script>
</head>
<body>
<form>
密码:<input id="pass" name="password" type="password" >
<input name="确定" type="button" value="确定" onmouseover="message()"/>
</form>
</body>
</html>
你在密码输入框那里给个id , 点确定后根据id拿到输入框里的值 , 判断值是否为空 , 空就return ,不空就,,,,,,,,
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题