gpt4 book ai didi

javascript - jQuery 验证未完全正常工作

转载 作者:行者123 更新时间:2023-11-28 16:17:48 24 4
gpt4 key购买 nike

我遇到了一个问题,即我的验证仅在哪里起作用,但我似乎无法弄清楚问题出在哪里。在该页面中,我对地址、城市、邮政编码和信用卡进行了验证,但这些验证不适用于信用卡。

html:

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Billing Information</title>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
<script src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/jquery.validate.min.js"></script>
<script type="text/javascript" src="test.js"></script>

<style type="text/css">
.error {
background-color: #ffc;
border: 1px solid red;
}
</style>
</head>

<body>
<table border='1'>

<tr>
<td>
<form action="signin.html" id="signup">
<p>
<label for="name">Address:</label>
<input type="text" name="address" id="address" />
</p>

<p>
<label for="name">City: </label>
<input type="text" name="city" id="city" />
</p>

<p>
<label for="name">ZIP Code:</label>
<input type="text" name="zip" id="zip" size='3'/>
</p>

</td>

<td>
<p><b>What is your preferred billing method?</b></p>

<input type="radio" name="payment" id="ccard" value="cc" />
<label for="cCard">Credit Card</label><br />

<div id="cardInfo">
<!-- doesn't work here -->
<label for="name">Card Number: </label>
<input type="text" name="cnum" id="cnum" size='15' /> <br />

<label for="name">Expiration Date:</label>
<input type="text" name="exp" id="exp" size='4' />
</div>

</td>
<td>
<p align='center'>
<input type="submit" id='submit'>
</p>
</td>
</form>
</tr>
</table>
</body>
</html>

js:

$(function() {

// validations using plugin
$('#signup').validate({
rules: {
address: 'required',
city: 'required',
zip: {
required:true,
digits:true,
minlength:5,
maxlength:5
},
cnum: 'required'
}
});
});

编辑:如果我将卡号移至第一列,验证会起作用,但当它位于第二列时则不会

http://jsfiddle.net/JqSBC/

最佳答案

将表单元素放在表格元素之外。

表单不允许是 table、tbody 或 tr 的子元素。

关于javascript - jQuery 验证未完全正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10873931/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com