我想将<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”);” 部分,它必须是字符串。