2

我正在通过下拉框中的 topicList 数组从控制器中获取 TopicName 并将其显示到下拉列表中。我想要做的是在发送回所选下拉列表的值时,我想通过 javascript 函数将 topicId(也存储在 topicList 数组中)发送到我的控制器。这是我的 HTML 代码。选择主题:

      <td>
           <select name="Topic" id="Topic" class="myDropDown">
                     <option selected="selected" value="-1">-- Select Topic --</option>

                      <c:forEach var="item" items="${topicList}">
                         <option >${item.topicName} </option>
                       //Here I want to send the value of item.topicId`enter code here`
                       </c:forEach>
            </select>

      </td>

这是我的 JavaScript 函数,通过我发送我的值函数 doAddTopic(){

                         var subName=jq("#Topic option:selected").val();
                        // alert(name);aaaaaaaaaaaaaaaaaaaaaaaaaaaaa

                    var url = "/xyz/abc/"+subName+"/";
                         jq.post(url, function(data) 
                       }

我想要的是在选择 item.topicName 时我想发送 item.topicId 的值。我该怎么做

4

1 回答 1

1

也许你应该像这样尝试,

<c:forEach var="item" items="${topicList}">
                         <option value="${item.topicId}">${item.topicName} </option>
                       //Here I want to send the value of item.topicId`enter code here`
                       </c:forEach>

在选项内赋予价值value="${item.topicId}"

于 2013-07-20T06:39:05.563 回答