form表單序列化成json數據 將空值用空字符串代替(form表單中checkBox數據會用逗號隔開拼接成字符串)

$.fn.notEmptyserializeJson = function () {
    var o = {};
    var a = this.serializeArray();
    $.each(a, function () {
            if (o[this.name]) {
                o[this.name] = o[this.name] + ',' + this.value || '';
            } else {
                o[this.name] = this.value || '';
            }
    });

    var $radio = $('input[type=radio],input[type=checkbox]',this);
    $.each($radio,function(){
        if(!o.hasOwnProperty(this.name)){
            o[this.name] = '';
        }
    });

    return JSON.stringify(o);
};
相關文章
相關標籤/搜索