var iframe = document.createElement("iframe");
iframe.src = "http://www.jb51.net";
 
if (iframe.attachEvent){
iframe.attachEvent("onload", function(){
alert("Local iframe is now loaded.");
});
} else {
iframe.onload = function(){
alert("Local iframe is now loaded.");
};
}
 
document.body.appendChild(iframe);

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-02-27
  • 2022-01-02
  • 2021-12-28
  • 2022-02-15
  • 2021-06-12
猜你喜欢
  • 2022-12-23
  • 2021-06-10
  • 2021-11-09
  • 2021-08-17
  • 2022-12-23
  • 2021-12-24
相关资源
相似解决方案