0

我想将<script></script>hello.html 上的标签中的数据获取到 index.html。我怎样才能做到这一点?

索引.html:

<head>
<script>
// some codes
</script>
</head>

<body>
<div>
<!-- result will be come here -->
</div>
</body>

</html>

你好.html:

<html>

<head>
</head>

<body>
<script>
document.writeln("hello world");
</script>
</body>

</html>

编辑:我想要“document.writeln(“hello world”);” 部分,它必须是字符串。

4

2 回答 2

1

将脚本单独保存为myScript.js,然后您可以在带有脚本包含标记的两个 html 文件中使用它!<script src="myScript.js"></script>

于 2012-12-02T11:58:04.887 回答
0

将脚本移动到一个新文件中,例如script.js,然后将其添加到两个文件中:

<script src="script.js"></script>
于 2012-12-02T11:58:12.460 回答