サーブレットから取得したデータをドロップダウンメニューにプリロードしたいと思います。これが私のコードが現在どのように見えるかです:
<script>
var method = ${method};
</script>
<script type="text/javascript">
function PreselectMyItem(value)
{
// Get a reference to the drop-down
var myDropdownList = document.form.select;
// Loop through all the items
for (iLoop = 0; iLoop< myDropdownList.options.length; iLoop++)
{
if (myDropdownList.options[iLoop].value == value)
{
// Item is found. Set its selected property, and exit the loop
myDropdownList.options[iLoop].selected = true;
break;
}
}
}
</script>
<body onload="init(jsonData); PreselectMyItem(method)">
<div>
<div id="header">
<form method="post" action="Servlet" id="form" name="form">
<table border=0 width=100%>
<tr>
<td><select name="method" id="select">
<option value="AllDocs">AllDocs</option>
<option value="TermTerm">TermTerm</option>
<option value="DocsDocs">DocsDocs</option>
</select></td>
</tr>
</table>
</form>
</div>
</div></body>
値は正しく送信されているようですが、ドロップダウンメニューで選択されていません。
<script>
var method = TermTerm;
</script>