如果没有使用 jQuery 生成的输入字段,则隐藏提交按钮
如果 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以轻松做到这一点。 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
.很简单!
Quite simple!