简单的 JQuery 验证
就在检查以确保一个隐藏字段不为空之后。
if($('#cal_startdate').val('')) {
alert('Please select a start date') }
else { form.submit }
这不太正确。我宁愿这是一个 onsubmit 操作。
任何想法,
很棒的
编辑
Just after a check to make sure one hidden field is not empty.
if($('#cal_startdate').val('')) {
alert('Please select a start date') }
else { form.submit }
That isn't quite right. I'd rather it was an onsubmit action.
Any ideas,
Marvellous
EDIT
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这个怎么样:
What about this:
您需要将验证附加到
submit()
事件处理程序。如果数据有效,则返回 true - 否则返回 false。You'll want to attach the validation to the
submit()
event handler. If data is valid, return true - else, return false.请注意,这里您使用
val()
作为 setter。实际上,调用.val('')
会将您的输入设置为空。您想做的是:现在应该可以了
Beware, here you are using
val()
as a setter. Effectively, calling<selection>.val('')
will set your input to something empty. What you want to do is the following:That should work now