“Iframe GetElementById” Code-Antworten

Iframe GetElementById

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

So erhalten Sie mit JavaScript Element in Iframe in Iframe

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

Ähnliche Antworten wie “Iframe GetElementById”

Fragen ähnlich wie “Iframe GetElementById”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen