이번에는 jQuery를 사용하여 xml 파일을 읽고 분석하는 단계에 대해 자세히 설명합니다. jQuery에서 xml 파일을 읽고 분석할 때 주의사항은 무엇인가요?
다음은 jQuery가 ajax를 통해 xml 파일을 정기적으로 읽고 분석하는 방법을 보여주는 데모입니다. xml 파일은 다음과 같습니다.<?xml version="1.0"?> <data> <page tasks="1" messages="3" notifications="3"/> </data>
$(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를 사용하면 브라우저가 서로 점프하여 매개변수를 전달할 수 있습니다. 새로운 구성 없이 jQuery 사용에 대한 자세한 설명입니다.
위 내용은 jQuery를 사용하여 xml 파일을 읽고 분석하는 단계에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!