如何修改iframe内的页面的元素的样式

如何修改iframe内的页面的元素的样式

window.onload = function(){
    var _iframe = document.getElementById('iframe').contentWindow.document.getElementById('license_title')   //get iframe下的id
    _iframe.style.display= "none";  //修改样式
}

猜你喜欢

转载自www.cnblogs.com/wangxueying/p/8945298.html