Home  >  Article  >  Web Front-end  >  Detailed explanation of the steps to read and analyze xml files with jQuery

Detailed explanation of the steps to read and analyze xml files with jQuery

php中世界最好的语言
php中世界最好的语言Original
2018-04-23 11:33:521403browse

This time I will bring you jQueryDetailed explanation of the steps to read and analyze xml files. What are the precautions for jQuery to read and analyze xml files? The following is a practical case. Let’s take a look. one time.

Here is a demonstration of how jQuery regularly reads and analyzes xml files through ajax.

xml file is as follows:



 

js file is as follows:

$(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);
});

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website !

Recommended reading:

jQuery allows browsers to jump to each other and pass parameters using detailed explanation

jQuery no new construction usage detailed explanation

Detailed explanation of the use of jquery plug-in uploadify

The above is the detailed content of Detailed explanation of the steps to read and analyze xml files with jQuery. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn