首頁  >  文章  >  web前端  >  jQuery實作定時讀取分析xml檔的方法_jquery

jQuery實作定時讀取分析xml檔的方法_jquery

WBOY
WBOY原創
2016-05-16 15:50:071775瀏覽

本文實例講述了jQuery實作定時讀取分析xml檔案的方法。分享給大家供大家參考。具體如下:

這裡示範了jQuery如何透過ajax方式定時讀取xml檔並分析。

xml檔案如下:

<&#63;xml version="1.0"&#63;>
<data>
 <page tasks="1" messages="3" notifications="3"/>
</data>

js檔案如下:

$(document).ready(function() {
 function get_info() {
  $.ajax({
   type: "GET",
   url: "page.xml",
   dataType: "xml",
   cache: false,
   complete: function(doc) {
    var tasks = $(doc.responseText).find("page").attr("tasks");
    var msgs = $(doc.responseText).find("page").attr("messages");
    var notes = $(doc.responseText).find("page").attr("notifications");
    if (tasks != $('#tasks').text() ||
     msgs != $('#messages').text() ||
     notes != $('#notifications').text()) {
     document.title = "Facebook" + ' NEW NOTIFICATON';
    }
    $('#tasks').text(tasks);
    $('#messages').text(msgs);
    $('#notifications').text(notes);
   }
  });
 }
 setInterval(function() {
  get_info();
 }, 5000);
});

希望本文所述對大家的jquery程式設計有所幫助。

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn