如何在 Apache Velocity 中使用下拉列表中的选定值到另一个标签的文本中



我在Apache Velocity中有一个下拉列表,我需要使用选定的下拉列表值作为标签的文本:

<select name="fruits" id="fruits">
<option value="apple">Apple</option>
<option value="watermelon">Watermelon</option>
</select>

这是我的标签:

<label id="selectedValue""> //I need value of selected value here </label>

如何在 apache 速度中使用下拉列表中的选定值到另一个标签的文本中?

您可以使用 jQuery: JSFiddle

$(document).ready(function() {
$(function() {
$('#fruits').on('change', function(){
var selected_fruits = $(this).find("option:selected").val();
$("#selectedValue").empty();
$('#selectedValue').append(selected_fruits);
});
});
});

相关内容

  • 没有找到相关文章

最新更新