本文實(shí)例講述了JS修改iframe頁(yè)面背景顏色的方法。分享給大家供大家參考。具體如下:
下面的代碼演示了如何在網(wǎng)頁(yè)里通過(guò)JS代碼修改嵌入的iframe的網(wǎng)頁(yè)背景顏色
<!DOCTYPE html><html><head><script>function changeStyle(){var x=document.getElementById("myframe");var y=(x.contentWindow || x.contentDocument);if (y.document)y=y.document;y.body.style.backgroundColor="#0000ff";}</script></head><body><iframe id="myframe" src="demo_iframe.htm"><p>Your browser does not support iframes.</p></iframe><br><br><input type="button" onclick="changeStyle()" value="Change background color"></body></html>希望本文所述對(duì)大家的javascript程序設(shè)計(jì)有所幫助。
新聞熱點(diǎn)
疑難解答
圖片精選
網(wǎng)友關(guān)注