gpt4 book ai didi

javascript - 我们如何将文本框值设置为下拉列表?

转载 作者:行者123 更新时间:2023-12-01 03:54:37 29 4
gpt4 key购买 nike

 function SetUtcTimeZone() {
var UTCTimeZone = document.getElementById("txtPortorAnchorDeparture").value;
document.getElementById('ddlUTCTimeZone').selectedIndex = UTCTimeZone;
}
<小时/>

如何使用 dropdownlist id 将文本框值设置为 dropdownlist

最佳答案

我想它看起来像这样:

function SetTxt() {
var indx = document.getElementById('ddlUTCTimeZone').selectedIndex;
var val = document.getElementById('ddlUTCTimeZone').options[indx].text;
document.getElementById("txtPortorAnchorDeparture").value = val;
}

关于javascript - 我们如何将文本框值设置为下拉列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42873608/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com