param()方法在jQuery中, 用于创建对象的序列化表示。
语法如下:
$.param( object, trad )
参数:此方法接受上面提到和下面描述的两个参数:
- 目的:它是必需参数, 用于指定要序列化的数组或对象。
- 交易:它是一个可选参数, 用于指定是否使用传统风格的参数序列化。
范例1:本示例使用param()方法创建对象的序列化表示。
<!DOCTYPE html>
< html >
< head >
< title >
jQuery param() Method
</ title >
< script src =
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js" >
</ script >
</ head >
< body style = "text-align:center;" >
< h1 style = "color:green;" >
lsbin
</ h1 >
< h2 >jQuery param() Method</ h2 >
< button >Click</ button >
< div ></ div >
<!-- Script using param() method -->
< script >
$(document).ready(function() {
personObj = new Object();
personObj.Firstword = "Geeks";
personObj.Secondword = "For";
personObj.Thirdword = "Geeks";
personObj.Wordcolor = "Green";
$("button").click(function() {
$("div").text($.param(personObj));
});
});
</ script >
</ body >
</ html >
输出如下:
在单击按钮之前:
单击按钮后:
范例2:本示例使用param()方法创建对象的序列化表示。
<!DOCTYPE html>
< html >
< head >
< title >
jQuery param() Method
</ title >
< script src =
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js" >
</ script >
</ head >
< body style = "text-align:center;" >
< h1 style = "color:green;" >
lsbin
</ h1 >
< h2 >jQuery param() Method</ h2 >
< button >Click</ button >
< div ></ div >
<!-- Script using param() method -->
< script >
$(document).ready(function() {
personObj = new Object();
personObj.Fullword = "lsbin ";
personObj.Wordcolor = " Green";
$("button").click(function(){
$("div").text($.param(personObj));
});
});
</ script >
</ body >
</ html >
输出如下:
在单击按钮之前:
单击按钮后: