P粉6654279882023-09-05 11:06:00
您的HTML结构对我来说似乎有问题。一个input
元素不包含options
;select
元素才包含。我的代码片段向您展示了如何以编程方式将select
下拉菜单的值分配给第二个选项,即APPLE。
它还使用了您现有的结构(根据您的查询派生),但是最后一个元素不再使用input
,而是使用select
,因为从语义上讲,input
与options
不符合逻辑。所以,如果我的解释有误,我的解决方案可能无法准确回答您的问题。但是我希望它仍然可以指导您朝正确的方向发展。
const select = document.querySelector(".ng-touched > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > select:nth-child(1)") // setTimeout used to visualize how GOOGLE changes to APPLE. setTimeout(() => { // You can access the options of the select with .options. // Then you can programatically set the selected value by index. select.options.selectedIndex = 1 }, 2000)
<div class="ng-touched"> <div style="padding-left: 16px;"> <div style="padding-left: 16px;"> <div> </div> <div style="padding-left: 16px;"> <select id="companies"> <option value="google">GOOGLE</option> <option value="apple">APPLE</option> <option value="facebook">FACEBOOK</option> <option value="amazon">AMAZON</option> </select> </div> </div> </div> </div>