Advertisement
Advertisement

新足迹

 找回密码
 注册
新足迹 门户 IT专业论坛 查看内容

New jQuery plugin from Microsoft

2010-10-6 09:42| 发布者: dalaohu | 查看: 1130| 原文链接

微軟現在也開始向jquery裡添加新的plugin。

這個jQuery template 是其中的一個, 上次有同學問道,現在有第一方的插件了。

http://stephenwalther.com/blog/a ... osoft-ajax-cdn.aspx

<script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery.templates/beta1/jquery.tmpl.min.js"></script>

<style type="text/css">
     
    html {
        background-color:Orange;
    }
     
    #catBox div {
        width:250px;
        height:250px;
        border:solid 1px black;
        background-color:White;
        margin:5px;
        padding:5px;
        float:left;   
    }
     
    #catBox img {
        width:200px;
        height: 200px;   
    }
     
    </style>

</head>
<body>

    <h1>Cat Photos!</h1>

    <div id="catBox"></div>  

    <script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery/jquery-1.4.2.min.js"></script>
    <script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery.templates/beta1/jquery.tmpl.min.js"></script>

    <script id="catTemplate" type="text/x-jquery-tmpl">
        <div>
            <b>${title}</b>
            <br />
            <img src="${media.m}" />
        </div>
    </script>

    <script type="text/javascript">
        var url = "http://api.flickr.com/services/feeds/groups_pool.gne?id=44124373027@N01&lang=en-us&format=json&jsoncallback=?";

        // Grab some flickr images of cats
        $.getJSON(url, function (data) {
            // Format the data using the catTemplate template
            $("#catTemplate").tmpl(data.items).appendTo("#catBox");
        });

    </script>

</body>



This page displays a list of cats retrieved from Flickr:
Advertisement
Advertisement


Advertisement
Advertisement
返回顶部