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');

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM