我在Firefox中遇到setInterval函数的问题,它在chrome中运行良好,有人可以解释我的原因吗? 这是代码。
<html>
<head>
<!-- desde http://www.aaronjwhite.org/index.php/15-web-development/jquery/7-using-jquery-and-google-finance-to-create-a-simple-stock-ticker -->
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
<title>Prueba Google Finance</title>
<script src="https://code.jquery.com/jquery-2.2.3.min.js"></script>
<script type="text/javascript">
var count=0;
$(document).ready(function call(){
$.getJSON('https://finance.google.com/finance/info?client=ig&q=MSE:IDR&callback=?',function(response){
var stockInfo = response[0];
var stockString ='<div class="stockWrapper">STOCK:';
stockString +='<span class="stockSymbol">'+stockInfo.t+'</span>';
stockString +='<span class="stockPrice">'+stockInfo.l+'</span>';
stockString +='<span class="stockChange">'+stockInfo.c+'</span>';
stockString +='<span>at</span> <span class="stockTime">'+stockInfo.ltt+'</span>';
stockString +='</div>';
$('.stockTick').prepend(stockString);
count++;
alert("Call nº "+count);
setInterval(call,20000);
});
});
</script>
</head>
<body>
<div class="stockTick">Auto20</div>
</body>
</html>
答案 0 :(得分:0)
它似乎也不适用于Chrome。
无法加载资源:服务器响应状态为400()
你的api返回400.所以代码不能正常工作