使用多个文本框的信用卡验证问题
我使用多个文本框供用户输入不同的信用卡#,并进行 jquery 验证。不明确的是,只有第一个文本框验证有效。验证不适用于其他框。错误控制台中也没有js错误。
如果有人能给我一个线索,那将会非常有帮助。
//for first textbox
$("#cust_reg").validate({
rules: {
cc_num_local: {
required: true,
creditcard: true
}
}
});
//for second textbox
$("#cust_reg").validate({
rules: {
cc_num_roam: {
required: true,
creditcard: true
}
}
});
仅相关 html:http://pastie.textmate.org/2422338
I'm using multiple textboxes for users to entry different credit cards#, with jquery validations. Ambiguously, only the first text box validation is working. Validation's are not working for the other boxes. There are no js errors too in error console.
It'll be very helpful if someone can please give me a clue.
//for first textbox
$("#cust_reg").validate({
rules: {
cc_num_local: {
required: true,
creditcard: true
}
}
});
//for second textbox
$("#cust_reg").validate({
rules: {
cc_num_roam: {
required: true,
creditcard: true
}
}
});
the relevant html only: http://pastie.textmate.org/2422338
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
cust_reg
id 拥有多个 HTML 元素。如果您这样做,那么您的 JavaScript 代码将只能使用其中一个,因为其中一个会取代另一个。它也不是有效的 HTML。您需要将第二个字段的名称更改为不同的名称,例如cust_reg2
。You can have more then one HTML element using the id of
cust_reg
. If you do then only one will be available to your JavaScript code since one supersedes the other. It also isn't valid HTML. You'll need to change the name of the second field to be something different likecust_reg2
.由于您有一种表单和两个不同的 ID,您可以尝试将它们组合到您的代码中。
Since you have one form and two different ID's you might try combining them in your code.