JSP にドロップダウンがあります。<html:options>
JSPでタグから選択値を取得する方法。
<html:select property="temp_Id" >
<html:options collection="listmap" property="key"/>
</html:select>
JSP にドロップダウンがあります。<html:options>
JSPでタグから選択値を取得する方法。
<html:select property="temp_Id" >
<html:options collection="listmap" property="key"/>
</html:select>
タグを次のように変更します
<html:select property="temp_Id" styleId = "tempId" >
html:options collection="listmap" property="key"/>
</html:select>
Javaスクリプトに次を追加します
var e = document.getElementById("tempId");
var strUser = e.options[e.selectedIndex].value;
これで大丈夫です。ありがとうございます。