如何在TypeScript程式碼裡獲得HTML元素的css屬性

汪子熙發表於2020-12-08

首先從angular/core裡匯入ElementRef:

然後注入到建構函式中:

最後通過如下程式碼訪問名為–cx-max-views的CSS屬性:

/**
   * Returns the maximum number of views per split-view. The number is based on the
   * CSS custom property `--cx-max-views`.
   */
  protected get splitViewCount(): number {

    console.log('Jerry cod19: ');
    return Number(
      getComputedStyle(this.elementRef.nativeElement).getPropertyValue(
        '--cx-max-views'
      )
    );
  }


更多Jerry的原創文章,盡在:“汪子熙”:

相關文章