<script> <br><br> $(function(){ <br>//$("#loaddata").click(function(){ <br>$(document).ready(function(){ <br>//읽으려면 getJSON 메서드를 사용하세요. json 데이터, <br>//참고: info.json은 해당 데이터가 json 유형인 한 다양한 유형의 파일일 수 있습니다. <br>$.getJSON('info.json',function(data){ <br><br>var html = ''; <br>$.each(data,function(i,item){ <br>html = '<tr><td>' 항목['name'] '< ;/td>' <br>'<td>' 항목['sex'] '</td>' 항목.주소 '</td>' <td>' 항목['home'] ' </td></tr>' <br>}) <br>$('#title').after(html); /after 메소드: 일치하는 각 요소 콘텐츠 뒤에 삽입합니다. <br>}); <br>}); <br><br>//참고: item.address 또는 item['address']일 수 있습니다. <br>//firefox 보고서 "구문 오류 [" json 파일에서 데이터는 로드만 가능합니다<br>//ie chrome은 데이터를 로드할 수 없습니다<br></script>