“iframe getElementById” Respostas de código

iframe getElementById

document.getElementById('myframe1').contentWindow.document.getElementById('x')
Relieved Reindeer

como obter elemento no iframe usando javascript

const iframe = document.getElementById("myIframe");

const iWindow = iframe.contentWindow;
const iDocument = iWindow.document;

// accessing the element
const element = iDocument.getElementsByTagName("p")[0];
element.style.color = "green";
Thoughtful Turtle

Respostas semelhantes a “iframe getElementById”

Perguntas semelhantes a “iframe getElementById”

Procure respostas de código populares por idioma

Procurar outros idiomas de código