使用 Javascript 隐藏提交按钮
如何使用 javascript 隐藏提交按钮?原因是因为我的表单复选框在单击时提交表单,但仅在启用 JS 时才提交。对于那些禁用了JS的人,我希望他们看到提交按钮,所以我想使用JS隐藏提交按钮。如果有帮助的话我正在使用 Codeigniter。谢谢!
How do I hide the submit button using javascript? Reason is because my form checkboxes submits the form on click but only when JS is enabled. For those with JS disabled, I want them to see the submit button, so I want to hide the submit button using JS. I'm using Codeigniter if this helps. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
为什么 javascript 当 noscript 可以完成这项工作时:
Why javascript when noscript will do the job:
简单的 JavaScript,
simple javascript,
隐藏提交按钮非常容易:
It is very easy to hide a submit button:
在 jQuery 中:
<代码>
$(文档).ready(函数() {
$('#buttonId').hide();
});
In jQuery:
$(document).ready(function() {
$('#buttonId').hide();
});