码迷,mamicode.com
首页 > Web开发 > 详细

jQuery练习---表单验证之单选按钮验证

时间:2016-10-11 18:58:24      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>表单验证之单选按钮验证</title>
<style type="text/css">
.infobox {
margin-top: 10px;
}
.error {
color: red;
}

</style>
<script src="../jquery-1.5.2.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
$(‘.error‘).hide();
$(‘.submit‘).click(function(event) {
var count = $(‘input:checked‘).length;
if(count==0) {
$(‘.error‘).show();
$(‘.result‘).hide();
}
else {
$(‘.error‘).hide();
$(‘.result‘).show();
$(‘.result‘).text(‘你选择了 ‘ + $(‘input:checked‘).attr(‘value‘));
}

event.preventDefault();
});
});
</script>
<body>
<form>
<input type="radio" name="paymode" value="信用卡支付" class="infobox">
信用卡
<br />
<input type="radio" name="paymode" value="礼品卡支付" class="infobox">
礼品卡
<br />
<input type="radio" name="paymode" value="消费券支付" class="infobox">
消费券
<br />
<p class="error">
请选择支付方式!
</p>
<p class="result">
</p>
<input class="submit" type="submit" name="submit" value="提交">
</form>
</body>
</html>

jQuery练习---表单验证之单选按钮验证

标签:

原文地址:http://www.cnblogs.com/ll-taj/p/5950008.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!