我想獲取一個json文件(Steam API)並且想要在一個表中顯示排序的文件。我已經嘗試了一個按鈕和一個列表,但它不起作用。我不知道如何用桌子做這個。 (例如:http://carl-keinath.de/json.html)獲取JSON文件
<html>
<head>
<title>JSON</title>
</head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script type="text/javascript">
$("button").click(function() {
$.getJSON("json_data.json", function(obj) {
$.each(obj, function(key, value) {
$("ul").append("<li>"+value.name+"</li>");
});
});
});;
</script>
<body>
<ul></ul>
<button>Refresh</button>
</body>
</html>
謝謝你man!:D – 2015-02-06 10:06:58