Ie

ページがjs実行をロードした後(document.onreadystatechangeおよびdocument.readyState)



After Page Loads Js Execution Document



javascript(document.onreadystatechangeおよびdocument.readyState)の実装後にjsページが読み込まれます

Event when the page loads document.onreadystatechange status change document.readyState page load state value, the following four state values. uninitialized - has not yet begun loading loading - Loading interactive - has been loaded, the user can begin interacting with documents complete - finished loading // load the page finished loading hides a scroll bar document.onreadystatechange = function(){ if(document.readyState=='complete'){ $('.loading').fadeOut() } }