DW6設計jquery mobile app |
|
勝詮兒
更新時間:2014/10/7 下午 02:27:32 |
|
以下程式碼要如何修改??求教
<script> $(document).ready(function(){ $.ajax({ type: "GET", url: "http://opendata.cwb.gov.tw/opendata/MFC/F-D0047-067.xml", dataType: "xml", success: function(xml) { $(xml).find('data').each(function(){ var name = $(this).find('name').text(); var time = $(this).find('time').text(); var memo = $(this).find('memo').text(); $('<tr></tr>').html('<th>'+name+'</th> <th>$'+time+'</th> <th>$'+memo+'</th>' ).appendTo('#chart'); }); } }); }); </script>
</head> <body> <table id="chart"> <tr> <td> <th>Data header 1</th> <th>Data header 2</th> <th>Data header 3</th> </td> </tr> </table> |
|
|
|
文淵閣工作室
更新時間:2014/10/7 下午 04:28:35 |
|
不好意思, 我們討論的範圍應以書上的作品為主, 我們無法對讀者自己的作品, 進行編寫的動作. 請您要自行學習研讀javascript. |
|
|
|
|
|
|