iframe 子页面改变父页面样式

iframe

子窗口调节父窗口样式:

$(window.parent.document).find("body").attr("style","background-color:#99FF00")

父元素改子元素样式(不跨域):

document.getElementById('iframeID').contentWindow.document.body.style.backgroundColor="#f00";

例如:

var topWindow=$(window.parent.document);

var iframe_box=topWindow.find("#iframe_box");//获取Iframe
iframe_box.find(".show_iframe").hide()

从多个iframe中查找元素

var topWindow = $(window.parent.document);
var $iframe = topWindow.find('#moreQuotes .moreStock_iframe');         
$iframe.contents().find('input.sunPageSearch').siblings('ul').css('display', 'none');

 

posted @ 2017-09-16 14:49  Sun~_~  阅读(5983)  评论(0编辑  收藏  举报