如何获得特定符号的雅虎财经头条新闻

时间:2016-03-20 13:16:37

标签: javascript yahoo-api yahoo-finance

我正在使用此代码获取一个特定符号的库存数据,但我需要获取 这个符号的标题也是如此,你能否帮助弄清楚如何列出最近5个更新的标题?

如您所知,雅虎在每个符号的返回页面中显示标题为

enter image description here

这是我的代码:

<div id="stockTick"></div>

jQuery(document).ready(updateStockPrice);
function updateStockPrice(){
    jQuery.getJSON('https://finance.google.com/finance/info?client=ig&q=DNT.TO&callback=?',function(response){
        var stockInfo = response[0];
        var stockString ='<div class="stockWrapper"><strong>Stock Price:</strong> ';
        stockString +='<span class="stockPrice">CAD. '+stockInfo.l+'</span>';
        stockString +=' <span class="stockChange">'+stockInfo.c+'</span>';
        stockString +='</div>';
        jQuery('#stockTick').html(stockString);
      });
    setTim

由于

0 个答案:

没有答案