标签:
1、$.param()将对象键值对转换为 URL 字符串键值对
var obj = { name : ‘Lee‘, age : 100 }; alert($.param(obj));
URL 操作
原文地址:http://www.cnblogs.com/shenq/p/5534849.html