[學習筆記]jQuery使用筆記(2)
Contents
jQuery ajax
Json
Json格式因為其方便及自定格式一直與XML檔處於一個難以取捨的平衡位子,不過近一代的寫法因為其簡潔,漸漸趨於主流。
以下範例筆記會使用Json格式進行 ajax操作
線上解譯器 Json Decoder
"data":[
{
"projId":"1",
"title":"計畫1",
"description":"計畫1描述",
"percentage":"10%"
},
{
"projId":"2",
"title":"計畫2",
"description":"計畫2描述",
"percentage":"20%"
},
{
"projId":"3",
"title":"計畫3",
"description":"計畫3描述",
"percentage":"30%"
}
]
}