我有一個iframe如何從iframe訪問文檔中的<img />?
<iframe src="../Images/landingpage.jpg" id="Iframe1" name="ifrmContent" class="ifrmClass">
</iframe>
我在檢查元素髮現img標籤就在於它具有body標籤
<html>
<body style="margin: 0px;">
<img style="-webkit-user-select: none;" src="../Images/landingpage.jpg">
</body>
</html>
「#document」 我需要訪問這個IMG(「landingpage.jpg 「),以改變(圖像是小..需要調整)它的寬度爲100%,高度:90%
我已經嘗試使用#Iframe1>#document>html>body>img{width:100%;}
控制檯中報告了6個錯誤。他們是什麼? – happyjack