//添加一个加载事件
var iframe = document.getElementById("oneIframechart");
if (iframe.attachEvent) {
iframe.attachEvent("onload", function () {
document.getElementById("oneIframeLoadA").hidden = true;
});
} else {
iframe.onload = function () {
document.getElementById("oneIframeLoadA").hidden = true;
};
}
这个是oneIframechart 的id
要隐藏的div的oneIframeLoadA id
如下所示:
'<div id="oneIframeLoadA" style=" margin-top: 28%; margin-left: 49%;" >....</div>
<iframe id="oneIframechart" name="oneIframechart" class="iframe-div" width="800px" height="618px;" 。。。。>