我一直试图从以下url获取数据,但没有任何成功。以下是我到目前为止的html代码。我不确定为什么它不起作用,请有人向我解释。
<html>
<button >
<h1 id="head">`Top News #1`</h1>
</button>
<script>
function processJSON(text)
{
document.getElementById("head").innerHTML = text[0].news_title;
};
</script>
<script src='http://apps3.mcot.net/mcot_script/mcot_news_programs_all_in_cat.php?jsoncallback=processJSON'>
</script>
</html>
答案 0 :(得分:-1)
我认为你需要将它解析为json,试试这个:
var data= JSON.parse(text);
document.getElementById("head").innerHTML = data[0].news_title;