jQuery美元符号未定义

bou*_*ppo 5 javascript jquery google-visualization yql

在我获取历史信息的过程中,我尝试使用以下代码.Chrome调试器说明了这一点Uncaught ReferenceError: $ is not defined.你能提出一个解决方案吗,我真的被卡住了.我只需要在Chrome上工作,我正在使用YQL和Yahoo API.

这里是jsFiddle http://jsfiddle.net/pCK5q/1/

<html>
  <head>      
    <script type='text/javascript' src='http://www.google.com/jsapi'></script>
    <script type='text/javascript'>
      google.load('visualization', '1', {'packages':['annotatedtimeline']});
      google.setOnLoadCallback(drawChart);
      function drawChart() {
        var data = new google.visualization.DataTable();

        /* historical data code that breaks */
        var url = 'http://query.yahooapis.com/v1/public/yql';
        var startDate = '2012-01-01';
        var endDate = '2012-01-08';
        var jsonData = encodeURIComponent('select * from yahoo.finance.historicaldata where symbol in ("YHOO","AAPL","GOOG","MSFT") and startDate = "' + startDate + '" and endDate = "' + endDate + '"');
        $.getJSON(url, 'q=' + data + "&env=http%3A%2F%2Fdatatables.org%2Falltables.env&format=json", callback);

        data.addColumn('date', 'Date');
        data.addColumn('number', 'Sold Pencils');
        data.addColumn('string', 'title1');
        data.addColumn('string', 'text1');

        data.addColumn('number', 'Sold Pens');
        data.addColumn('string', 'title2');
        data.addColumn('string', 'text2');      // not on the fly


        data.addRows([
          [new Date(2008, 1 ,1), 30000, undefined, undefined, 40645, undefined, undefined],
          [new Date(2008, 1 ,2), 14045, undefined, undefined, 20374, undefined, undefined],
          [new Date(2008, 1 ,3), 55022, undefined, undefined, 50766, undefined, undefined],
          [new Date(2008, 1 ,4), 75284, undefined, undefined, 14334, 'Out of Stock','Ran out of stock on pens at 4pm'],
          [new Date(2008, 1 ,5), 41476, 'Bought Pens','Bought 200k pens', 66467, undefined, undefined],
          [new Date(2008, 1 ,6), 33322, undefined, undefined, 39463, undefined, undefined]
        ]);

        var chart = new google.visualization.AnnotatedTimeLine(document.getElementById('chart_div'));
        chart.draw(data, {displayAnnotations: true});
      }
    </script>
  </head>

  <body>
    // Note how you must specify the size of the container element explicitly!
    <div id='chart_div' style='width: 700px; height: 240px;'></div>

  </body>
Run Code Online (Sandbox Code Playgroud)

McG*_*gle 5

只需在脚本之前添加对JQuery源的引用:

<script src="http://code.jquery.com/jquery.min.js"></script>
Run Code Online (Sandbox Code Playgroud)


Jef*_* B. 3

添加这一行:

google.load("jquery", "1.7.1");
Run Code Online (Sandbox Code Playgroud)

就在这个下面你已经有了:

google.load('visualization', '1', {'packages':['annotatedtimeline']});
Run Code Online (Sandbox Code Playgroud)

这将从您已经使用的 Google jsapi 加载 jQuery。这是关于您的代码的最佳解决方案。