使用javascript在标签中显示下拉列表的选择
本文关键字:下拉列表 选择 显示 javascript 标签 使用 | 更新日期: 2023-09-27 17:59:20
我有一个下拉列表,我希望在加载文档时,当前在下拉列表中选择的值位于标签中。
我有一个脚本
var x = document.getElementById('vatRate');
document.getElementById('pricingConsumerVat').textContent = x;
我得到了变量x中的值,但我无法在标签中显示相同的值。
为什么会这样?
我的标签是
<label id="pricingConsumerVat"></label>
任何jQuery解决方案也最受欢迎。
试试这个。。
document.getElementById('pricingConsumerVat').textContent = x.value;
或
document.getElementById('pricingConsumerVat').innerHTML = x.value;
var x = document.getElementById('vatRate');
document.getElementById('pricingConsumerVat').innerHTML = x.value;