无法将谷歌趋势中的js片段添加到HTML页面中

时间:2013-10-13 20:34:45

标签: javascript html

我试图添加一个js脚本,以便在html页面上显示谷歌趋势。我直接从http://goo.gl/4C92vk的第一个图形渐变嵌入代码并将其转换为以下内容,这不起作用

<html>
<body>
<script type="text/javascript" src="//www.google.com/trends/embed.js?hl=en-US&q=chicago+marathon&cmpt=q&content=1&cid=TIMESERIES_GRAPH_0&export=5&w=500&h=330"></script>
</body>
</html>

任何想法?感谢

1 个答案:

答案 0 :(得分:1)

<body>
<div>
<script type="text/javascript">
document.write('<iframe scrolling="no" style="border:none;" width="250" height="413" src="http://www.google.com/trends/hottrends/widget?pn=p1&amp;tn=10&amp;h=413"></iframe>');
</script>
</div>
</body>