试图弄清楚如何使用 javascript 在表单的文本框中动态生成文本。
我想从我所做的下拉列表中选择一种事件类型,并在该选择中将一个值输入到 eventprice 表单的文本框中。
到目前为止,这就是我所拥有的,但我没有在文本框中产生任何价值,任何帮助表示赞赏。
function totalprice(){
if($('#type').val() == '3'){
$('#eventprice') == ("45");
}
}
<input type="text" disabled="" id="eventprice" onChange="totalprice();" name="eventprice" class="form-input" />