黄金市场价格查询
wujiai
|黄金市场价格查询
黄金价格(元/克)
查询时间(格式:YYYY-MM-DD HH:MM:SS,例如:2023-03-18 10:30:00)
查询黄金价格
let lastPrice = 0;
let isLoading = true;
let date = new Date();
let startDate = new Date(date.getFullYear(), date.getMonth(), date.getDate(), date.getHours(), date.getMinutes(), date.getSeconds());
let endDate = new Date(date.getFullYear(), date.getMonth(), date.getDate(), date.getHours(), date.getMinutes(), date.getSeconds());
function refreshGoldPrice() {
isLoading = true;
lastPrice = 0;
$.getJSON("https://api.ftcdn.com/v3/gold/price", { startDate, endDate }, function(data) {
let result = data.price;
lastPrice = result;
isLoading = false;
$("#黄金价格查询结果").text(当前金价:${result}元/克);
});
}
function adjustDateRange(startDate, endDate) {
let result = [];
for (let i = startDate; i








