如何在输入字段输入有效电子邮件后附加提交按钮 - jQuery?

发布于 2024-12-26 18:15:20 字数 210 浏览 1 评论 0原文

我正在研究当电子邮件在字段中有效时如何添加提交按钮,有一个 jsfiddle 你可以理解它:

http ://jsfiddle.net/5bQQW/

它不起作用,因为在有效电子邮件之后没有出现提交按钮

有人可以帮助我吗?

谢谢!

I'm figuring out how to add submit button when e-mail is valid from field, there a jsfiddle you can understand it:

http://jsfiddle.net/5bQQW/

It didn't work because it doesn't appear a submit button after of valid e-mail

Can anyone help me it?

thx!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

软的没边 2025-01-02 18:15:20

你的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文