Cómo seleccionar un elemento dentro del iframe usando document.getElementById
tengo uno iframe
como este
<iframe name="myframe1" id="myframe1" width="100%" height="100%" src="a.html">
<html>
<head></head>
<frameset name="myframe2" cols="0%, 100%" border="0" frameBorder="0" frameSpacing="0">
<frame name="page1" src="c.html" scrolling="no"></frame>
<frame name="page2" src="d.html" >
<html>
<head></head>
<body id="top">
<div id="div1">
<div id="div2">
<div id="div3">
<ul id="x">
<li>a</li>
<li>b</li>
</ul>
</div>
</div>
</div>
</body>
</html>
</frame>
</frameset>
</html>
</iframe>
Quiero referirme al elemento "x". Intenté de varias maneras pero no encontré una solución.
Aceptado
document.getElementById('myframe1').contentWindow.document.getElementById('x')
Violín
contentWindow
es compatible con todos los navegadores, incluidas las versiones anteriores de IE.
Tenga en cuenta que si el iframe
's' src
es de otro dominio, no podrá acceder a su contenido debido a la Política del mismo origen .
utilizar contentDocument
para lograr esto
var iframe = document.getElementById('iframeId');
var innerDoc = (iframe.contentDocument)
? iframe.contentDocument
: iframe.contentWindow.document;
var ulObj = innerDoc.getElementById("ID_TO_SEARCH");