コンボボックス(<select>)を動的に変えるには

[上に] [前に] [次に]
CVA 1999/09/06(月) 13:56:30
WIN NN4.xで条件によって、コンボボックスの内容を変えたいのですが
下記のコードではLAYERの中身がコンボボックスにならず、文字のみ
表示されます。
何かご指摘があればお願いします

if(document.layers)
  with(document.layers[layName]){
    document.open()
    document.write('<select name="aaa"><option>aaa</select>')
    document.close();
    }
  }

Tmb 1999/09/06(月) 14:05:20
selectはformの子要素ですから,それもdocument.writeで書いてやるべき
なのでは?
document.write '<form name="hoge"><select name="aaa"><option>aaa</select></form>';

CVA 1999/09/06(月) 14:44:39
[[解決]]
うまくいきそうです
ありがとうございました

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