jquery 判断表单是否为空
<!DOCTYPEhtml><html><head><linkrel="stylesheet"href="css/bootstrap-theme.min.css"><li...
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<script type="text/javascript">
$(document).ready(function(){
$("uname").keydown(function(){
$("namenull").css("dispaly","none");
});
$("upwd").keydown(function(){
$("pwdnull").css("dispaly","none");
});
});
</script>
<script type="text/javascript">
function login(){
if($("#uname").value=="") {
$("#namenull").css("dispaly","block");
$("#uname").focus();
return false;
}else if ($("#upwd").value=="") {
$("#pwdnull").css("dispaly","block");
$("#upwd").focus();
return false;
}
return true;
}
</script>
</head>
<body>
<div>
<button data-toggle="modal" data-target="#login">登录</button>
</div>
<div class="modal fade" id="login" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-body">
<form action="index.html" method="post" name="form1" onsubmit="return login()">
<label>用户名</label>
<input type="text" name="uname" id="uname">
<label style="display:none;color:red;" id="namenull">请输入用户名!</label>
<label>密码</label>
<input type="text" name="upwd" id="upwd">
<label style="display:none;color:red;" id="pwdnull">请输入密码!</label>
<input type="submit" value="登录">
</form>
</div>
</div>
</div>
</div>
</body>
</html>
想知道这么写的问题在哪里?
一直无法实现 展开
<html>
<head>
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<script type="text/javascript">
$(document).ready(function(){
$("uname").keydown(function(){
$("namenull").css("dispaly","none");
});
$("upwd").keydown(function(){
$("pwdnull").css("dispaly","none");
});
});
</script>
<script type="text/javascript">
function login(){
if($("#uname").value=="") {
$("#namenull").css("dispaly","block");
$("#uname").focus();
return false;
}else if ($("#upwd").value=="") {
$("#pwdnull").css("dispaly","block");
$("#upwd").focus();
return false;
}
return true;
}
</script>
</head>
<body>
<div>
<button data-toggle="modal" data-target="#login">登录</button>
</div>
<div class="modal fade" id="login" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-body">
<form action="index.html" method="post" name="form1" onsubmit="return login()">
<label>用户名</label>
<input type="text" name="uname" id="uname">
<label style="display:none;color:red;" id="namenull">请输入用户名!</label>
<label>密码</label>
<input type="text" name="upwd" id="upwd">
<label style="display:none;color:red;" id="pwdnull">请输入密码!</label>
<input type="submit" value="登录">
</form>
</div>
</div>
</div>
</div>
</body>
</html>
想知道这么写的问题在哪里?
一直无法实现 展开
2个回答
2015-12-09 · 做真实的自己 用良心做教育
千锋教育
千锋教育专注HTML5大前端、JavaEE、Python、人工智能、UI&UE、云计算、全栈软件测试、大数据、物联网+嵌入式、Unity游戏开发、网络安全、互联网营销、Go语言等培训教育。
向TA提问
关注
展开全部
参考下面代码中的if判断来实现的,如果真空怎么样,如果不为空怎么样:
$(document).ready(function() {
$(“form”).submit(function(){
if ($(“select[name='boardid']“).val() == “”){
alert(“对不起,请选择类别!”);
$(“select[name='boardid']“).focus();
return false;
}
if ($(“select[name='boardid']“).val() == “请选择分类”){
alert(“对不起,请选择类别!”);
$(“select[name='boardid']“).focus();
return false;
}
if ($(“input[name='txtcontent']“).val() == “”){
alert(“对不起,请填写内容!”)
$(“input[name='txtcontent']“).focus();
return false
}
if ($(“input[name='txtcontent']“).val().length > 150){
alert(“对不起,内容超过150个字符限制!”)
$(“input[name='txtcontent']“).focus();
return false
}})
$(“#t”).keyup(function(){
$(“.inner”).text($(“input[name='txtcontent']“).val());
}).change(function(){
$(“.inner”).text($(“input[name='txtcontent']“).val());
});
});
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |