form表单序列化json对象

html



    
        
        
    
    
        
姓名:
性别:
年龄:
爱好 篮球 排球 足球 地球

$.fn.serializeObject = function () {
    var o = {};
    var a = this.serializeArray();
    $.each(a, function () {
        if (o[this.name]) {
            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;
}  

$(function () {
    $("#ajaxBtn").click(function () {
        debugger;
        var params = $("#myform").serializeObject(); //将表单序列化为JSON对象   
        console.info(params);
    })
})

你可能感兴趣的:(form表单序列化json对象)