从另一个文件获取数据

时间:2012-12-02 11:52:45

标签: javascript html

我想将hello.html上的<script></script>标记中的数据转换为index.html。我怎么能这样做?

的index.html:     

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

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

</html>

hello.html的:

<html>

<head>
</head>

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

</html>

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

2 个答案:

答案 0 :(得分:1)

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

答案 1 :(得分:0)

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

<script src="script.js"></script>