,可以通过以下步骤实现:
下面是一个示例代码:
HTML部分:
<select id="mySelect">
<option value="option1">选项1</option>
<option value="option2">选项2</option>
<option value="option3">选项3</option>
</select>
<input type="text" id="myText">
JavaScript部分:
// 获取下拉列表的元素对象
var selectElement = document.getElementById("mySelect");
// 获取选中项的值
var selectedValue = selectElement.options[selectElement.selectedIndex].value;
// 将选中项的值显示到文本框
document.getElementById("myText").value = selectedValue;
在这个示例中,我们通过getElementById方法获取了ID为"mySelect"的下拉列表元素对象,然后使用selectedIndex属性和options属性获取选中项的值,并将其赋给ID为"myText"的文本框的value属性。
腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云