值不是從HTML回升:選擇如何獲取從html:options標籤中選擇的值?
<html:select property="billSelected">
<html:option value=""> - Select One - </html:option>
<html:options property="billList"/> //billList is a vector
</html:select>
,我有一個按鈕,它的劇本,
<input type="submit" id="handleSubmit" value=" Submit ">
JS:
jQuery(document).ready(function(){
jQuery('#handleSubmit').click(function(){
var x = document.getElementById("billSelected");
alert(x);
alert('${form.billSelected}');
});
});
billList填充了3值。當我選擇其中一個並單擊提交時,x和billSelected警報將爲空。我也試過getElemenetsbyName,但沒有運氣。如何獲得選定的選項值?
是'HTML:在HTML select'一個元素? – PRAISER
它不過是
所以你爲什麼試圖得到一個沒有ID的HTML元素?請添加客戶端HTML,這有助於更輕鬆地調試代碼。 – PRAISER