在做页面的时候,经常碰到要在页面加载完全之后再去展现。
JS判断页面加载是否完成
document.onreadystatechange = function(){ if(document.readyState == "complete"){ window.location="/" } }