1. 程式人生 > >處理js沒有解析完成的情況

處理js沒有解析完成的情況

script.onload=script.onreadystatechange=()=>{ 
     if(!this.readyState||this.readyState=='loaded'||this.readyState=='complete'){  
           //你要執行的事件
     }  
     script.onload=script.onreadystatechange=null;  
}