导航栏: 首页 评论列表

原生JS实现$(document).ready(function(){alert(123); })

默认分类 2011-03-25 00:56:31

  1. /*||document.readyState == "loaded"||document.readyState == "interactive"*/   
  2. (function(){  
  3.   if (document.readyState == "complete") {  
  4.     //write ready function here  
  5.     window.alert("Document loaded")  
  6.   }else window.setTimeout(arguments.callee,50);  
  7. })();  


>> 留言评论