欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

JS修改iframe頁(yè)面背景顏色的方法

 更新時(shí)間:2015年04月01日 15:32:11   作者:瘋狂一夏  
這篇文章主要介紹了JS修改iframe頁(yè)面背景顏色的方法,涉及javascript操作iframe頁(yè)面樣式的技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下

本文實(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ì)有所幫助。

相關(guān)文章

最新評(píng)論