背景を振り分ける

[上に] [前に] [次に]
こみね ゆき 1999/07/24(土) 20:27:04
ieとnnで背景を変えたくてこうしました。

<script type="text/JavaScript">
<!--
(navigator.appName.charAt(0) == "M") {
document.write ('<Style type=\"text/css\"><!--') ;
document.write ('body { background: url(\"ie.gif\") no-repeat }  ') ;
document.write ('--\></Style>') ;
}else{
document.write ('<Style type=\"text/css\"><!--') ;
document.write ('body { background: url(\"others.gif\") no-repaet }  ') ;
document.write ('--\></Style>') ;
}
// -->
</script>

しかしハングアップしてしまいます。違反した書き方なのでしょか?

ちゃわ 1999/07/25(日) 00:33:13
3行目の頭に if って入れたら
ちゃんと出ましたけど・・・

そういう問題じゃなくて?

[上に] [前に] [次に]