程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> 關於ASP.NET >> asp.net使用jquery模板引擎jtemplates呈現表格

asp.net使用jquery模板引擎jtemplates呈現表格

編輯:關於ASP.NET

    這篇文章主要介紹了asp.net使用jquery模板引擎jtemplates呈現表格的示例,大家參考使用吧

    在Asp.net MVC 中,使得我們能夠更加自由控制我們所想顯示HTML。通常情況下,都要做一下數據列表。那麼我們可以手動去拼一個表格出來,但這樣有時對於復雜的表格說,那就JS代碼比較復雜了。我們可以借助JS下的模板引擎,來實現這一功能。下面要介紹就是JTemplates,它也是基於Jquery的。

     代碼如下:

    <%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage" %>

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    <html xmlns="http://www.w3.org/1999/xhtml">

    <head runat="server">

    <title></title>

    <link href="Content/default.css" rel="stylesheet" type="text/css" />

    <script src="Scripts/jquery-1.3.1.js" type="text/javascript"></script>

    <script src="Scripts/jquery-jtemplates.js" type="text/javascript"></script>

    <script type="text/javascript">

    $(document).ready(function() {

    $.ajax({

    type: "POST",

    url: '<%=Url.Action("TempleteData", "Home") %>',

    data: "{}",

    contentType: "application/json; charset=utf-8",

    dataType: "json",

    success: function(msg) {

    //instantiate a template with data

    ApplyTemplate(msg);

     

    }

    });

    });

    function ApplyTemplate(msg) {

    $('#Container').setTemplate($("#TemplateResultsTable").html());

    $('#Container').processTemplate(msg);

    }  

    </script>

     

    </head>

    <body>

    <div id="Container"> </div>

    <%-- Results Table Template --%>

    <script type="text/html" id="TemplateResultsTable">  

    {#template MAIN}  

    <table  cellpadding="10" cellspacing="0">  

     <tr>  

    <th>Username</th>  

    <th>Password</th>  

    <th>Url</th>  

    <th>Email</th>  

    <th>PassportID</th>  

    </tr>

    {#foreach$Tasuu}

    {#includeROWroot=$T.uu}

    {#/for}

    </table>

    {#/templateMAIN}

    {#templateROW}

    <trclass="{#cyclevalues=['','evenRow']}">

    <td>{$T.UserName.bold()}</td>

    <td>{$T.Password}</td>

    <td>{$T.Url.link($T.Url)}</td>

    <td>{$T.Email.link('mailto:'+$T.Email)}</td>

    <td>{$T.PassportID}</td>

    </tr>

    {#/templateROW}

    </script>

    </body>

    </html>

     

     

    通過ajax返回json數據,setTemplate根據Id設置模板,然後ApplyTemplate就可以了。

    CS代碼:

    代碼如下:

    ///<summary>

    ///Templetesthedata.

    ///</summary>

    ///<returns></returns>

    publicJsonResultTempleteData()

    {

    IList<UserEntity>userlist=newList<UserEntity>()

    {

    newUserEntity(){UserName="Tina",PassportID=23433,Email="[email protected]",Password="NKASD",Url=

    "http://www.gefds.cn"}

    ,newUserEntity(){UserName="Lucy",PassportID=3444,Email="[email protected]",Password="v23sda",Url=

    "http://www.qqfsad.cn"}

    };

    returnJson(userlist);

    }

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved