0

4行目のChar1から上記のエラーが発生しています...何がスローされているのかわかりませんか?私には見えないシンプルなものだと確信しています...

out = out + "<b>Select Box Information</b><br><br> The name of the select box is: skeletor. A play on the word selector.<br>"
out = out + "The options for the select box are, Default Value, Option 2, Option 3, Option 4 and Option 5.<br>"
out = out + "The values for each option, from top to bottom, are: " + lucy.skeletor.option(0) + ", "
out = out + lucy.skeletor.option(1) + ", " + lucy.skeletor.option(2) + ", " + lucy.skeletor.option(3)
out = out + ", " + lucy.skeletor.option(4) + ".<br><br>"
out = out + "The index of the first option in the select box is: 0. The location of the user-selected option is: " + lucy.skeletor.value + ".<br><br>"
4

2 に答える 2

1

lucy.skeletor.option(1)ここで問題になると思います。lucy.skeletorが本物のselect要素である場合、options配列が含まれています。その配列は次のように参照できます。lucy.skeletor.options[n]

さらに、連結する場合は、次のことができます。

out += somestring+someotherstring+morestrings ... etc
于 2011-05-02T08:58:30.447 に答える
1

out = out + ...は大丈夫ですが、必要ありません。問題は、存在しないコレクションにアクセスしている.option(1)を使用していることです。

skeletorがtheの場合、新しいブラウザの正しい構文は次のとおりです。

lucy.options[1].valueまたは.text

これがあなたの意味だと思います

var out = "";
out += "<b>Select Box Information</b><br><br> The name of the select box is: skeletor. A play on the word selector.<br>"
out += "The options for the select box are, Default Value, Option 2, Option 3, Option 4 and Option 5.<br>"
out += "The values for each option, from top to bottom, are: "
var opts=[]; 
for (var i=0;i<lucy.skeletor.options.length;i++) opts.push(lucy.skeletor.options[0].text); 
out += opts.join(", ");
out += ".<br><br>"
out += "The index of the first option in the select box is: 0. The location of the user-selected option is: " + lucy.skeletor.value + ".<br><br>"
于 2011-05-02T09:10:25.180 に答える