我有一个谷歌网站。我想使用外部脚本让google visualisations在我的网站上运行:
这是出错的脚本。
<html>
<head>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("visualization", "1", {packages:["corechart"]});
google.setOnLoadCallback(drawChart);
function drawChart() {
var data = google.visualization.arrayToDataTable([
['Year', 'Sales', 'Expenses'],
['2004', 1000, 400],
['2005', 1170, 460],
['2006', 660, 1120],
['2007', 1030, 540]
]);
var options = {
title: 'Company Performance',
hAxis: {title: 'Year', titleTextStyle: {color: 'red'}}
};
var chart = new google.visualization.ColumnChart(document.getElementById('chart_div'));
chart.draw(data, options);
}
</script>
</head>
<body>
<div id="chart_div" style="width: 900px; height: 500px;"></div>
</body>
</html>
我添加了这个脚本trhoug一个htmlbox,我得到错误: 1 + 13 - 42:无法加载外部网址jsapi
为什么jsapi不会加载?
答案 0 :(得分:0)
据我所知,您无法在HTML Box小工具中加载外部网站/页面(甚至谷歌页面)。
为此,您可以在Google小工具编辑器中创建自定义小工具(使用您的Gmail帐户),访问以下网址,
http://www.google.com/ig/ifr?url=gge.xml
你可以将上面的代码放在那里并保存,你可以通过右键单击并在右侧文件名中复制链接来获取网址。然后,在你的Google网站页面中, 编辑页面 - &gt;插入 - &gt;更多小工具 - &gt;按网址添加小工具 - &gt;粘贴上面复制的URL并保存。