我正在尝试使用php向http://localhost/test/equity.php添加自定义网址,以便网址显示此代码中的数据:
$.ajax({
url: 'https://api.iextrading.com/1.0/stock/MSFT/book',
dataType: 'json',
type: 'get',
cache: false,
success: function(data){
document.getElementById("stockprice").innerHTML = data.quote.symbol + " - Brandname";
}
});
网址看起来像http://localhost/test/quote/ {symbol}