我正在尝试更改ion-scroll
元素的滚动位置,但没有得到..这是我尝试过的:
ts
import { Component, ViewChild, ElementRef } from "@angular/core";
@ViewChild("scroller", { read: ElementRef })
private scroller: ElementRef;
html
<ion-scroll #scroller scrollX="true" style="height: 21px; white-space: nowrap">
<div>... </div>
</ion-scroll>
这有效
this.scroller.nativeElement.style.background = "blue";
这不起作用
this.scroller.nativeElement.scrollLeft = this.scroller.nativeElement.scrollWidth;