Cómo seleccionar un elemento dentro del iframe usando document.getElementById

Resuelto ishk asked hace 11 años • 6 respuestas

tengo uno iframecomo 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.

ishk avatar Jan 22 '13 10:01 ishk
Aceptado
document.getElementById('myframe1').contentWindow.document.getElementById('x')

Violín

contentWindowes compatible con todos los navegadores, incluidas las versiones anteriores de IE.

Tenga en cuenta que si el iframe's' srces de otro dominio, no podrá acceder a su contenido debido a la Política del mismo origen .

Fabrício Matté avatar Jan 22 '2013 04:01 Fabrício Matté

utilizar contentDocumentpara lograr esto

var iframe = document.getElementById('iframeId');
var innerDoc = (iframe.contentDocument) 
               ? iframe.contentDocument 
               : iframe.contentWindow.document;

var ulObj = innerDoc.getElementById("ID_TO_SEARCH");
Hary avatar Jan 22 '2013 04:01 Hary