摘要: js封裝from表單數據為json串進行ajax提交
json封裝代碼
function getFormJson(frm) { //frm:form表單的id var o = {}; var a = $("#"+frm).serializeArray(); $.each(a, function() { if (o[this.name] !== undefined) { if (!o[this.name].push) { o[this.name] = [ o[this.name] ]; } o[this.name].push(this.value || ''); } else { o[this.name] = this.value || ''; } }); return o; }
返回的數據格式為標准的json格式,ajax使用如下:
$.ajax({ type: 'post', url: 'your url', data: getFormJson(frm), success: function(data) { // your code } });
感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!