jQuery.param()
一、jQuery.param()
此用途為將plain object或jQuery object作序列化動作
var myObject = { a: { one: 1, two: 2, three: 3 }, b: [ 1, 2, 3 ] }; $.param(myObject);
其結果將得到"a%5Bone%5D=1&a%5Btwo%5D=2&a%5Bthree%5D=3&b%5B%5D=1&b%5B%5D=2&b%5B%5D=3"字串
來看另一個例子
var params = { width:1680, height:1050 }; jQuery.param( params );
結果為"width=1680&height=1050"字串