Home >Web Front-end >JS Tutorial >jQuery's method of calling jSon data and displaying it_jquery
The example in this article describes how jQuery retrieves jSon data and displays it. Share it with everyone for your reference. The details are as follows:
The following code is the display part of the page
$.get():从指定的资源请求数据
第一个参数:jSon插件;第二个参数:json数据格式;第三个参数:function(data)方法,data为取得的json数据串
$.each(data.jsona,function(index,elem))
参数说明:
data.jsona:json数据
function(index,elem):
参数说明:
index:索引
elem:相当于json数据串
此后,将html代码添加到页面中。
此方法的作用:
1、传递参数
2、获取
3、展示
接下来在
页面中的js作用:
1、绑定
2、赋值
希望本文所述对大家的jQuery程序设计有所帮助。