博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
把表单转成json,并且name为key,value为值
阅读量:5961 次
发布时间:2019-06-19

本文共 485 字,大约阅读时间需要 1 分钟。

http://jsfiddle.net/sxGtM/3/

http://stackoverflow.com/questions/1184624/convert-form-data-to-js-object-with-jquery

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*把表单转成json,并且name为key,value为值*/
 
$.fn.serializeObject = 
function
()
 
{
     
var 
o = {};
     
var 
a = 
this
.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 || 
''
;
         
}
     
});
     

转载地址:http://iyjax.baihongyu.com/

你可能感兴趣的文章
利用单壁路由实现vlan间路由
查看>>
hello world
查看>>
CentOS 7 配置yum本地base源和阿里云epel源
查看>>
python 学习导图
查看>>
生成树
查看>>
深入浅出JavaScript (五) 详解Document.write()方法
查看>>
Beta冲刺——day6
查看>>
Comet OJ - Contest #3 题解
查看>>
[网络流24题-9]试题库问题
查看>>
jquery选择器详解
查看>>
C# 保留2位小数
查看>>
使用xshell远程连接Linux
查看>>
杭电ACM1007
查看>>
faster-RCNN台标检测
查看>>
Unix环境高级编程 centos中配置apue编译环境
查看>>
运算符
查看>>
数据结构之各排序算法
查看>>
网页分帧操作<frameset>,<iframe>标签
查看>>
Vue生产环境部署
查看>>
酒店之王
查看>>