問題 - 私は別のインスタンスslick sliderを持っています。angular-cli:jQueryを使用して要素を参照する方法
例えば:私はここに私のコンストラクタの内部での私のプライベートel
変数に変数を設定するにはどうすればよい
- 私はここでやっているようにツリー全体を検索するのではなく、jqueryを使って要素に直接参照する方法はありますか?
jQuery(this.el.nativeElement).variable.slick({..
import { Component, ElementRef, ViewChild, HostListener, Input, Renderer, OnInit } from '@angular/core';
import { WindowRefService } from 'app/core/window-ref.provider';
declare var jQuery: any;
@Component({
moduleId: module.id,
selector: 'app-preview',
templateUrl: 'app-preview.component.html'
})
export class AppPreviewComponent implements OnInit {
constructor(private el: ElementRef) { }
ngOnInit() {
jQuery(this.el.nativeElement).slick({
infinite: false,
arrows: true,
variableWidth: true,
centerMode: true,
dots: false,
focusOnSelect: true,
cssEase: 'ease-in-out'
});
}
}
このビヨンのためにありがとうございましたが、私は単純にjQueryの最も単純な形に言及していましたオブジェクト参照。私はこの周りに自分の道を見つけたと思う。 – snkv