Created
May 16, 2016 05:05
-
-
Save kakari2/f6eaead3574532dfecb5114f831515c7 to your computer and use it in GitHub Desktop.
window.onloadの代替
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //スタイルシートや画像、それにフレームの読み込み完了を待つ必要がない場合、DOMContentLoadedイベントを使用する | |
| document.addEventListener( 'DOMContentLoaded', function() | |
| { | |
| var elemTangetu = document.getElementById('msgTangetu'); | |
| var elemRuikei = document.getElementById('msgRuikei'); | |
| elemTangetu.style.display=""; | |
| elemRuikei.style.display="none"; | |
| }, false ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment