NN6でのみ動作するように記述する


動作ブラウザ 【 IE:-  NN:6.0
Internet Explorer Netscape Navigator DreamPassport iCab
3.0x 4.0x 4.5 5.0x 5.5 2.0x 3.0x 4.0x 4.x 6.0 2 3 2.x
Windows × × - × × × × × × - × -
Macintosh × × × × - × × × × - - ×
UNIX - - - - - × × × × - - -
Dreamcast - - - - - - - - - - × × -

ポイント if (!document.all && document.getElementById) { スクリプト }
説  明 NN6で動作するように記述するには「if (!document.all && document.getElementById) { 実行する処理 }」のようにします。これはallコレクションがなくgetElementById()が扱える場合にのみ動作させることになります。NN6以前ではgetElementById()メソッドがないためif (document.getElementById)の条件がfalseになり以後に続く処理が実行されません。しかしdocument.getElementById()はIE5.x以上にあるためdocument.allがないという条件式を記述しNN6のみで動作するように条件式を記述します。
サンプル <html> <head> <title>NN6でのみ動作するように記述する</title> <script language="JavaScript"><!-- x = 0; function moveIMG() { if (!document.all && document.getElementById) { document.myIMG.style.left = x++; } } // --></script> </head> <body bgcolor="white" onLoad="setInterval('moveIMG()',1000)"> <img src="btn1.gif" id="myIMG" style="position:absolute"> </body> </html>
補足説明 なし

■サンプルスクリプトを実行する >>実行
■各ブラウザでの動作結果を見る >>View!


写真素材 PIXTA