こんにちは、複数のドロップダウンを反復して設定する for ループがあります。各ドロップダウンを反復し、そのページで選択した値を出力したいの
は、ここに私のコードです
<select name="occupation" id="myselect">
<option>Choose One</option>
<%if (list != null
&& list.size() > 0) {
for (Map.Entry<String,String> entry : list.entrySet()) {
if(!entry.getValue().equals(user1.getName())){%>
<option id="<%=user.getid()%>" value="<%=entry.getKey()%>"><%=entry.getValue()%></option>
<%}}}%>
</select>
jQuery:
$('#myselect').change(function(){
var id=$('#myselect option:selected').attr('id');
var text=$('#myselect option:selected').text();
alert(id);
alert(text);