Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个本质上很奇怪的用例,我知道应该有更好的方法来做到这一点,但是除了这些问题之外,有没有办法阻止某些表单元素提交?
我唯一的想法是从页面中删除“不需要的”元素以响应提交操作,但我不希望它们实际上被最终用户明显删除。
您可以插入没有“名称”属性的输入字段:
<input type="text" id="empty-example" />
或者您可以在提交表单后简单地删除它们(在 jquery 中):
$("form").submit(function() { $(this).children('#empty-example').remove(); });