按输入后,删除整个页面上的所有隐藏项目。点击后需要。以后使用php处理程序时,可以使用它来消除多余的字段吗?
$('input[name="submit"]').find(':hidden').each(function(){
$(this).remove();
});
答案 0 :(得分:0)
$(document).find('input[type="hidden"]').remove()
OR
通过点击:
# html
<input type="submit" value="remove entire hidden items"/>
# jquery
$('input[type="submit"]').on('click', function() {
$(document).find('input[type="hidden"]').remove()
})