0

我在 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());
    }
});  
4

1 回答 1

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();
于 2013-09-16T09:17:49.507 回答