1.07.2012

jQuery初體驗

這一篇文章沒什麼重點....只因為最近在學習jQuery,先從一個比較簡單的範例開始,把它當作筆記,先記下來....目前為止對jQuery的概念就是:1. 比JavaScript更簡潔有力;2. jQuery有自己的Library
<html>
<head><title>A Simple jQuery example!!</title></head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.js"></script>
<script>
    $(function() {
        var local = 1;
        window.setInterval(function() {
            $("#display").append("<div>At " + new Date() + " local = " + local + "</div>");
            local++;
        }, 3000);
    });
</script>
<body>
    <center><div id="display"></div></center>
<body>
</html>
執行結果:



參考資料:
1. http://www.jquery.com/
2. http://www.jquery.org/
3. http://www.json.org/
4. http://plugins.jquery.com/

沒有留言:

張貼留言