我需要在"值"中添加变量。字段,您可以从"选择"更改所选值。我该怎么做? THX。
答案 0 :(得分:0)
为什么不使用Jquery?
例如,您输入了
<input type="text" id="example" value="">
然后你有这样的选择
<select id="options_example" name="options">
<option value="1">1</option>
.
.
.
</select>
使用Javascript / Jquery:
//选择选项
var selected = $('#options_example').val()
修改输入值
$("#example").val(selected)
希望这有帮助
最佳