要使用ajax獲取,function ajax(url,succ) { var aj=window.XMLHttpRequest?new XMLHttpRequest():new ActiveXObject("Microsoft.XMLHTTP") aj.open("get", url, true) aj.send(); aj.onreadystatechange = function() { if(aj.readyState == 4&&aj.status==200&&succ) { succ(aj.responseText) } } }上面是ajax方法,下面是使用。ajax(url,function(res){ console.log(res)})//url裡是Json檔案的路徑,res是獲取到後的資料,在控制檯顯示,你想使用它,現看看它控制檯裡是什麼結構,再想想把它拿出來放到頁面。
要使用ajax獲取,function ajax(url,succ) { var aj=window.XMLHttpRequest?new XMLHttpRequest():new ActiveXObject("Microsoft.XMLHTTP") aj.open("get", url, true) aj.send(); aj.onreadystatechange = function() { if(aj.readyState == 4&&aj.status==200&&succ) { succ(aj.responseText) } } }上面是ajax方法,下面是使用。ajax(url,function(res){ console.log(res)})//url裡是Json檔案的路徑,res是獲取到後的資料,在控制檯顯示,你想使用它,現看看它控制檯裡是什麼結構,再想想把它拿出來放到頁面。