如果没有使用 jQuery 生成的输入字段,则隐藏提交按钮

发布于 2024-12-20 15:42:30 字数 156 浏览 0 评论 0原文

如果 div 中没有输入字段(可能有输入的特定 id 并检查是否存在?),我想隐藏我的提交按钮。

因为我通过按一些按钮生成一些输入字段,所以我有一个“保存” fields”按钮,仅当您生成了一些字段时才需要出现。

我想用 jQuery 来解决这个问题,有什么想法吗?

I would like to hide my submit button if there's not input fields in a div (maybe with a specific id for the inputs and check if there are present or not?)

Because I generate some inputs fields by pressing some buttons I have a "Save fields" button which need to appear only if you generated some fields.

I would like to trick this with jQuery, any idea?

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

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

发布评论

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

评论(2

踏雪无痕 2024-12-27 15:42:30

您可以轻松做到这一点。 Fosco 有一个很好的建议,默认隐藏提交按钮,并且仅在 元素的数量为 > 时才显示它。 0

此外,使用 .size()length() 函数获取特定类型或类的元素数量。如果该值为 0,则在提交时使用 .hide()按钮隐藏它,如果是 > 则 .show() 0 。

You can easily do this. Fosco has a great suggestion of making the submit button hidden by default, and only showing it if the number of <input> elements is > 0

Furthermore, use the .size() or length() function to get the number of elements of a particular type, or class. If that value is 0, then use .hide() on the submit button to hide it, and .show() if it's > 0.

离不开的别离 2024-12-27 15:42:30
if(!$("#form input").length > 0) $("#sumbit").hide();

很简单!

if(!$("#form input").length > 0) $("#sumbit").hide();

Quite simple!

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