2011-07-07 81 views

回答

6

從文檔:

的.serialize()方法可以已經選擇 個體的 jQuery對象上作用表格元素,例如 <input>,<textarea><select>

你可以這樣做:

var s = $('#post-form').find('input, textarea, select') 
         .not(':checkbox') 
         .serialize() 
2

您可以組合:input:not():checkbox選擇器:

var serialized = $(":input:not(:checkbox)").serialize(); 
+0

不考慮比'' Simeon

+0

@Simeon其他表單元素,在':input'選擇*不*'匹配