一个简单的html文件,可为什么得不到cc的内容?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
 <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
    <title></title>
    <script type="text/javascript">     
var cc;
var eqfeed_callback = function(data){
 alert('数据长度:' + data.features.length + '条');
  var count=data.features.length;
        alert('震级:'+ data.features[0].geometry.coordinates[0]);
cc=data;
    }; 
alert(cc);
</script>
<script src="http://earthquake.usgs.gov/earthquakes/feed/geojsonp/significant/week?callback= eqfeed_callback"> </script> 
</head>
<body  >
<div id="con"></div>
</body>
</html>