亚洲免费乱码视频,日韩 欧美 国产 动漫 一区,97在线观看免费视频播国产,中文字幕亚洲图片

      1. <legend id="ppnor"></legend>

      2. 
        
        <sup id="ppnor"><input id="ppnor"></input></sup>
        <s id="ppnor"></s>

        jQuery讀取XML文件內(nèi)容的方法

        字號:


            這篇文章主要介紹了jQuery讀取XML文件內(nèi)容的方法,實例分析了jQuery操作XML文件的技巧,需要的朋友可以參考下
            本文實例講述了jQuery讀取XML文件內(nèi)容的方法。分享給大家供大家參考。具體實現(xiàn)方法如下:
            代碼如下:
            <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "">
            <html xmlns="">
            <head>
            <title>jQuery讀取XML文件</title>
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
            <style type="text/css">
            h1{color:Green;text-align:center;}
            body{ background-color:#EEEEEE ; font-family:微軟雅黑; }
            #showresult{width:600px;overflow:hidden;}
            </style>
            <script type="text/javascript" src="jquery/1.4.4/jquery.min.js"></script>
            <script type="text/javascript">
            $(document).ready(function () {
            $("#read").click(function () {
            $.ajax({
            //請求方式為get
            type: "GET",
            //xml文件位置
            url: "sitemap.xml",
            //返回數(shù)據(jù)格式為xml
            dataType: "xml",
            //請求成功完成后要執(zhí)行的方法
            success: function (xml) {
            $(xml).find("url").each(function (i) {
            //i從0開始,累加,如果要顯示所有數(shù)據(jù),將判斷去除即可
            if (i < 10) {
            //鏈接地址
            var location = $(this).find("loc").text();
            //顯示文字
            var text = $(this).find("loc").text();
            //動態(tài)加載方法:鏈接地址
            $("<a>").attr("href", location)
            //顯示文字
            .text(text)
            //設置樣式
            .css({ "width": "700px", "float": "left", "margin-bottom": "5px" })
            //加載到div
            .appendTo("#showresult");
            }
            })
            }
            });
            return false;
            });
            });
            </script>
            </head>
            <body>
            <div id="showresult">
            <h1>jQuery讀取XML文件</h1>
            <a id="read" href="#">點擊讀取XML</a>
            </div>
            </body>
            </html>
            希望本文所述對大家的jQuery程序設計有所幫助。