嗨我想获得一个Steam商品的价格,不幸的是它不能与网址一起使用。
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
$(document).ready(function() {
$.getJSON('http://steamcommunity.com/market/priceoverview/?country=DE¤cy=3&appid=730&market_hash_name=P90%20%7C%20Asiimov%20%28Factory%20New%29', function(fbResults) {
document.write(fbResults.lowest_price);
});
});
</script>
</head>
<body>
</body>