この質問に対する回答を検索しましたが、その方法がわかりません。
object タグに含めた div のコンテンツにアクセスしたいと考えています。
私の include.htm ファイル:
<div id="includedDiv">This is the included page</div>
私が試したこと:
<html>
<head>
<title>Get element from object included page</title>
</head>
<body>
<p>Test: This is the main page</p>
<object id="obj" data="include.htm"></object>
<script>
//alert(document.getElementById("includedDiv").firstChild.nodeValue);
//alert((document.getElementById("obj")).document.getElementById("includedDiv").firstChild.nodeValue);
alert(document.getElementById("obj")["includedDiv"]);
</script>
</body>
</html>
「これは含まれているページです」というメッセージを表示するアラートはありません。DOM からこのコンテンツを取得する方法はありますか?
編集: window[0].document.getElementById("includedDiv").firstChild.nodeValue; DOMを介したアクセスの良い答えでした。オブジェクトタグは別のウィンドウを作成するだけです:) http://www.w3schools.com/jsref/prop_win_length.asp