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