gpt4 book ai didi

javascript - 如何按值选择下拉列表 dom-repeat Dropdown

转载 作者:行者123 更新时间:2023-11-30 14:47:50 25 4
gpt4 key购买 nike

我正在尝试在 Polymer 中刷新页面后重新加载下拉设置。下拉菜单通过 AJAX 调用动态加载,一旦设置好下拉菜单,它就会保存在 localStorage 中。

  <select id="customer" on-change="selectCustomer">
<option value="" selected disabled>Select Customer</option>
<template is="dom-repeat" items="[[customers]]" as="customer" index-as="index">
<option value="[[customer]]">[[customer]]</option>
</template>
</select>

...

selectCustomer() {
localStroage.setItem("customerName", this.$.customer.value = index;"
)

我试过了

setDropdown() {
// index generated in text matching for loop
this.$.customer.selectedIndex = index;
)

setDropdown() {
// customerName generated in text matching for loop
this.$.customer.value = customerName;
)

最佳答案

我相信更好的方法是将您的下拉值绑定(bind)到属性 customer 然后观察 customer 的值并将其保存到本地存储...同步它在 connectedCallbacka demo is always the best way to explain ...

关于javascript - 如何按值选择下拉列表 dom-repeat Dropdown,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48625511/

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