이 기사의 예에서는 jQuery가 xml 파일의 예약 읽기 및 분석을 구현하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
다음은 jQuery가 ajax를 통해 xml 파일을 정기적으로 읽고 분석하는 방법을 보여줍니다.
xml 파일은 다음과 같습니다.
<?xml version="1.0"?> <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 프로그래밍 설계에 도움이 되기를 바랍니다.