jQuery 验证跳过第二个输入字段
我有三个表单字段、两个输入框和一个文本区域。当我在输入任何数据之前点击提交按钮时,我的浏览器显示必须输入第一个输入字段和文本区域,但第二个输入字段被忽略。有谁知道我应该如何解决这个问题?
将代码发布到 http://jsfiddle.net/D5tk4/
谢谢!
I've got three form fields, two inputs and one textarea. When I hit the submit button before entering any data my browser says the first input field and the textarea must be entered, but the second input field is ignored. Does anyone got an idea how I should fix this?
Posted the code on http://jsfiddle.net/D5tk4/
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的输入字段具有
id
属性,但没有name
属性。输入需要具有名称属性。http://jsfiddle.net/petersendidit/D5tk4/2/
Your input fields have
id
attributes but notname
attributes. Inputs need to have name attributes.http://jsfiddle.net/petersendidit/D5tk4/2/