<script></script>
hello.htmlのタグにあるデータを index.html に取得したい。どうやってやるの?
index.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");」が欲しい 一部、文字列でなければなりません。