我需要在html页面上显示javascipt脚本的内容,但我不知道该怎么做?该脚本如下 -
<script type="text/javascript"
src="http://widget.parishesonline.com/publications?
id=4380d54a4c312f854ea93f3520cf1bf2650642d9"></script>
根据我的阅读,我将脚本放入标题,但我不知道用什么javascript代码在网页上显示 -
<head> <script type="text/javascript"
src="http://widget.parishesonline.com/publications?
id=4380d54a4c312f854ea93f3520cf1bf2650642d9"></script> </head>
标签,但我不知道要在体内放什么来显示内容。
答案 0 :(得分:2)
在我看来,脚本工作得很好。尝试使用它怎么样? 我不能在SO上这样做,所以这里是Fiddle。
请注意,小提琴中没有任何内容,只有脚本标签,就像我在我的文章中所说的那样。
<script type="text/javascript" src="https://widget.parishesonline.com/publications?id=4380d54a4c312f854ea93f3520cf1bf2650642d9"></script>
我想我可以在SO 上做到这一点
<script type="text/javascript" src="https://widget.parishesonline.com/publications?id=4380d54a4c312f854ea93f3520cf1bf2650642d9"></script>
答案 1 :(得分:1)
script
标记用于解释脚本,因此通过将其添加到head
标记,您将指示浏览器加载和解释脚本,这与显示它无关。您无需向head
添加任何内容,以便在body
中显示任何内容。
将远程内容添加到网页body
的一种方法是使用iframe
标记:
<html>
<head>
<title>I'm showing a script!</title>
</head>
<body>
<iframe src="http://widget.parishesonline.com/publications?id=4380d54a4c312f854ea93f3520cf1bf2650642d9"/>
</body>