我试图检索我的数据,然后使用data.split将其拆分
将我的数据显示在span中,
数据位于http://www.examplewebsite.com/7.html,其中应包含类似于“19,1,82,999,18,128,Rezonate - Monstercat 016 - Expedition - Canvas”的正文文本
的JavaScript
var data =$('http://www.examplewebsite.com/7.html').text();
alert(data); // just to check the value of data but that doesn't seem to be the value I'm looking for
var arr = data.split(',');
$("#display").append("<span>The Current Listeners is " + arr[0] + "</span></br><span>The Current Song is " + arr[6] + "</span></br>" );
HTML
<div id="display"></div>
知道为什么它没有读取html的内容吗?