如何在输入字段输入有效电子邮件后附加提交按钮 - jQuery?
我正在研究当电子邮件在字段中有效时如何添加提交按钮,有一个 jsfiddle 你可以理解它:
它不起作用,因为在有效电子邮件之后没有出现提交按钮
有人可以帮助我吗?
谢谢!
I'm figuring out how to add submit button when e-mail is valid from field, there a jsfiddle you can understand it:
It didn't work because it doesn't appear a submit button after of valid e-mail
Can anyone help me it?
thx!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的 if 和 else 条件是相同的,因此除非你删除 not (!),否则 else 不会被执行。但是,如果地址与您的模式匹配但用户继续输入有效的电子邮件,则会出现问题。然后附加多个提交按钮。您最好只显示和隐藏按钮,而不是不断附加元素。
尝试修改您的 jsFiddle。
Your if and else conditions are the same, therefore the else won't get executed until you remove the not (!). But then there's the problem if the address matches your pattern but the user continues to type a valid email. Then multiple submit buttons are appended. You'd be best off just showing and hiding the button rather than constantly appending an element.
Try working off of a revision of your jsFiddle.