iframe内容在IE8中完全加载 - IE9

时间:2013-09-16 09:03:23

标签: javascript jquery internet-explorer

我在IE8-9中遇到了网页完全加载的问题。我希望在div内容完全加载后执行一些操作,但在IE8-9中,页面未完全加载。此外,操作无法正常工作,因为它应该对加载的内容执行某些操作。

这是我的代码的一小部分。我正在尝试访问iframe内容并在iframe完全加载时更改样式:

$('#simulator_content').load(function(){
  if($('.edit-but').hasClass('edit_css_click')){
     $('#simulator_content').contents().find('#inner__wp_cincopa_1').find('style').html($("#_skin_css_new").val());
    }
});  

1 个答案:

答案 0 :(得分:0)

// there might be any third party image / request that's why it taking so much time to load
// here is an alternate way to do that thing
// check selector ID name with closest one

function reCheckElem(){
    if($("#simulator_content").length>0){
        // now element is loaded / available to modify
        alert("Element is ready to modify!!");
    } else { 
        setTimeout(function(){
            reCheckElem(); // wait 0.5 second and check in again
        },500);
    }
}

// call it when page start loading
reCheckElem();