- 41 名前:名前は開発中のものです。 mailto:sage [2008/02/21(木) 15:52:44 ID:+RwMpFfY]
- あと、これサンプルね。
.htmlファイルにコピペすれば、使えるから。 <pre> <html> <head> <script type="text/JavaScript"> //-------------------------------------------------- // レイヤー表示・非表示 // lyr = レイヤー名 // visf = 表示フラグ(表示ならtrue、非表示ならfalse) //-------------------------------------------------- function lyrSetVisibility( lyr , visf ) { if ( visf ) { document.getElementById( lyr ).style.visibility = "visible"; } else { document.getElementById( lyr ).style.visibility = "hidden"; } } </script> </head> </pre>
|

|