如何实现litelement中的select2

时间:2019-05-15 02:37:32

标签: javascript jquery-select2 dropdown lit-element lit-html

我想知道如何在图像中实现select2下拉菜单。 由于我具有动态选项值,因此如何在选项中使用选项文本框和标志实现选择

我已经在下面提到了源代码,请知道如何使用litelement中的动态选项用标志进行选择

//my-element.js
import {
  LitElement,
  html,
  css
} from "https://unpkg.com/@polymer/lit-element/lit-element.js?module";
export class Calculator extends LitElement {
  static get properties() {
    return {
      otherCountries: { type: Array }
      };
  }

  constructor() {
    super();
    this.otherCountries = [
      //drop down list
      "Austria",
      "Belgium",
      "Bulgaria",
      "Cyprus",
      "Czech Republic",
      "Denmark",
      "Estonia",
      "Finland",
    ];
  }


  render() {
    return html`
      <link
        rel="stylesheet"
        href="https://maxcdn.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css"
      />

      <form id="form_values" class="form-inline" role="form" autocomplete="off">

              <div class="col-7 form-group mr-auto">
                <div class="arrowicon">
                  <select
                    style="width: 170px"
                    name="sourcecountrycode"
                    class="calcFont form-control"
                    id="sourcecountrycode"
                    @change="${this.sourcecountryChange}"
                    value=""
                  >
                    ${this.countrydata.countries.map(
                      (country, key) => html`
                        <option value=${country.country_code}
                          >${country.country_name}</option
                        >
                      `
                    )}
                  </select>
                </div>
              </div>
        </form>

    `;
  }
}
customElements.define("calculator-home", Calculator);

1 个答案:

答案 0 :(得分:0)

由于select2是基于jQuery的选择框的替代品。因此,由于jQuery需要访问进入影子DOM边界的文档中的所有节点,因此当前无法可靠地工作。完整说明here

但是您可以使用lit-html作为代码示例:

Demo