本文介绍了如何让 $.serialize() 考虑那些禁用的 :input 元素?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

似乎默认禁用的输入元素被 $.serialize() 忽略.有解决方法吗?

It seems by default disabled input elements are ignored by $.serialize(). Is there a workaround?

推荐答案

暂时启用它们.

var myform = $('#myform');

 // Find disabled inputs, and remove the "disabled" attribute
var disabled = myform.find(':input:disabled').removeAttr('disabled');

 // serialize the form
var serialized = myform.serialize();

 // re-disabled the set of inputs that you previously enabled
disabled.attr('disabled','disabled');

这篇关于如何让 $.serialize() 考虑那些禁用的 :input 元素?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 01:51