我有一个下拉列表:
<select id="sel">
<option value="1">test1</option>
<option value="2">test2</option>
<option value="3">test3</option>
</select>
我得到这样的选定值:
var e = document.getElementById("sel");
var val= e.options[e.selectedIndex].value;
但我需要的是在播放框架 Scala 中使用“val”变量,如果句子如下:
@if(svor.rettsvar == val){
<p><b>@svor.svor_texti</b></p>
}
并在我更改所选值时使其更新。
最好的问候,比约恩。