Example:
...
//定義JSON名稱/值對
var JSONObject = {
"name":"xrd",
"age":24,
"phone":"123"
};
//用含參的html()設置每一個匹配元素的html內容,返回一個string
$("jname").html(JSONObject.name);
$("jage").html(JSONObject.age);
$("jphone").html(JSONObject.phone);
...html
Name:
Age:
Phone:ide
這個時候就只能用JQery的html()方法,好比$("jname").html(JSONObject.name);對ID爲jname的html標籤內設置string類型的內容,而帶參的val()方法是設置每個匹配的元素的值,返回一個JQuery的對象,如:spa
<div><input type="text"></div>htm
$("input").val("hello world!");
結果是文本框裏顯示hello world!對象