欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jQuery调取jSon数据并展示的方法教程

程序员文章站 2023-11-03 08:05:28
本文实例讲述了jquery调取json数据并展示的方法。分享给大家供大家参考。具体如下: 以下代码是将页面中的展示部分 代码如下: function searchprodu...

本文实例讲述了jquery调取json数据并展示的方法。分享给大家供大家参考。具体如下:

以下代码是将页面中的展示部分

代码如下:

function searchproductlistbyfiltercondition(index, type, sort, filterword) { 
    //cite_html 
    var citem_html = '<p class="citem"><p class="citemtop">' 
                    + '<a href="" target="_blank"><img src="{imglist}" /></a><p class="citemtxt">' 
                    + '<a class="citemtitle" target="_blank" href="">{title}</a><p class="citemtc">' 
                    + '<span class="yy-icon yy-time txtellipsis">{time}</span>' 
                    + '</p></p></p>' 
                    + '<p class="citemqt">' 
                    + '<span class="yy-icon yy-view">{mark}</span> <span class="yy-icon yy-comment">{price}</span>' 
                    + '<a class="yy-icon yy-like" href=""><span>{praise}</span> </a></p>' 
                    + '<p class="citemqt citemfoot"><p class="citemzl"><a class="citemimg" href="">' 
                    + '<img width="24" height="24" src="images/main/1408603734394.jpg" />' 
                    + '<span class="txtellipsis">{user}</span> </a></p>'
                    + '<span class="fcfiled">( <a target="_blank" href="">转载</a>- <a target="_blank" href="">' 
                    + ' 站酷中国</a> )</span>' 
                    + '<p id="hiddenpopop" class="miniprofile bottom"><p class="mnphead">' 
                    + '<a target="_blank" href="">' 
                    + ' <img src="images/main/author.jpg" width="50" height="50" /></a><p><p>' 
                    + ' <span class="mnpw-1">小海藻</span> <span class="mnpw-2">福建 福州</span> ' 
                    + ' <span class="mnpw-3">人气:<span>256</span></span></p><p class="fmbtn mt10">' 
                    + ' <a target="_blank" href="" class="ufmbtn ufocus"><span class="yy-icon yy-ufocicon"></span>' 
                    + ' <span>加关注</span> </a><a target="_blank" href="" class="ufmbtn ml10 ufusm"><span class="yy-icon yy-ufusm">' 
                    + ' </span><span>发私信</span> </a></p></p></p><p class="cb"></p>' 
                    + ' <p class="mnpbody mt10">' 
                    + ' <a target="_blank" href="">' 
                    + ' <img src="images/main/1.jpg" width="105" height="68" />' 
                    + ' </a><a target="_blank" href="">' 
                    + ' <img src="images/main/1.jpg" width="105" height="68" />' 
                    + ' </a><a target="_blank" href="">' 
                  &nbsnbsp; + ' <img src="images/main/1.jpg" width="105" height="68" />' 
                    + ' </a></p></p></p></p>'; 
    $.get('ajax/getproductlistbyflitercondition.ashx', 
     { pageindex: index, type: type, sorting: sort, keyword: filterword }, function (data) { 
         $.each(data.jsona, function (index, elem) { 
             citemhtml += citem_html.replace('{imglist}', elem.msg_img_list).replace('{title}', elem.msg_title) 
                                    .replace('{time}', elem.msg_date).replace('{mark}', elem.msg_mark) 
                                    .replace('{price}', elem.msg_price).replace('{praise}', elem.msg_praise) 
                                    .replace('{user}', elem.msg_create_user); 
         }) 
         $("#fsd1").after(citemhtml); 
     }, 'json'); 
    //alert(sort); 
}


citem_html:页面代码(关键字用特殊符号和文字表示,例如 {imglist},(time)等)

 

$.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、展示

接下来在

代码如下:

$(function () { 
    //页面初始化调用 
    searchproductlistbyfiltercondition("", "", "", ""); 
    //查询框,关键字查询--调用函数 
    $('#search ').click(function () { 
        pageindex = 1; 
        searchproductlistbyfiltercondition(pageindex, sortp, typel, keyword); 
          }); 
}


页面js中,调用,只需要将具体的数据对应填上就可以了。

页面中的js作用:
1、绑定
2、赋值