Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

关闭方法中的innerHTML 导致IE9崩溃 #60

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/layer.js
Original file line number Diff line number Diff line change
Expand Up @@ -912,6 +912,8 @@ layer.close = function(index){
layero.find('.'+doms[5])[0].removeChild(iframe);
} catch(e){}
}
//这里的innerHTML 在IE9中调用关闭导致IE崩溃
//我使用这里注释了下面第一行,元芳怎么看?
layero[0].innerHTML = '';
layero.remove();
}
Expand Down