이 기사의 예에서는 jQuery의 범용 전역 순회 메소드인 $.each()의 사용법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 정보는 다음과 같습니다.
1.test.json 파일 코드:
[ { "username": "张三", "content": "沙发." }, { "username": "李四", "content": "板凳." }, { "username": "王五", "content": "地板." } ]
2.html 코드:
<p> <input type="button" id="send" value="加载"/> </p> <div class="comment">已有评论:</div> <div id="resText" ></div>
3.jQuery 코드:
<script src="jquery-1.3.1.js" type="text/javascript"></script> <script type="text/javascript"> /* 1.$.each()是jquery的一个通用的遍历方法,可用于遍历对象和数组 2.$.each()函数不同于jquery对象的each()方法,它是一个全局函数,不操作jquery对象,而是以一个数组或者对象作为第一个参数,以一个回调函数作为第二个参数。回调函数拥有两个参数:第一个参数为对象的成员或数组的索引,第二个参数为对应变量或内容 */ $(function(){ $('#send').click(function() { $.getJSON('test.json', function(data) { $('#resText').empty(); var html = ''; $.each( data , function(commentIndex, comment) { html += '<div class="comment"><h6>' + comment['username'] + ':</h6><p class="para">' + comment['content'] + '</p></div>'; }) $('#resText').html(html); }) }) }) </script>
이 기사가 jQuery 프로그래밍에 종사하는 모든 사람에게 도움이 되기를 바랍니다.
jQuery의 일반적인 전역 탐색 방법 $.each() 사용 예 및 관련 기사를 더 보려면 PHP 중국어 웹사이트를 주목하세요!