“Gulir otomatis ke bawah sudut div” Kode Jawaban

Scoll a Div to Bottom in Pangular

import {..., AfterViewChecked, ElementRef, ViewChild, OnInit} from 'angular2/core'
@Component({
    ...
})
export class ChannelComponent implements OnInit, AfterViewChecked {
    @ViewChild('scrollMe') private myScrollContainer: ElementRef;

    ngOnInit() { 
        this.scrollToBottom();
    }

    ngAfterViewChecked() {        
        this.scrollToBottom();        
    } 

    scrollToBottom(): void {
        try {
            this.myScrollContainer.nativeElement.scrollTop = this.myScrollContainer.nativeElement.scrollHeight;
        } catch(err) { }                 
    }
}
Dark Dogfish

Gulir otomatis ke bawah sudut div

<div style="overflow: scroll; height: xyz;" #scrollMe [scrollTop]="scrollMe.scrollHeight">
    <div class="..." 
        *ngFor="..."
        ...>  
    </div>
</div>
Precious Panther

Gulir otomatis ke bawah sudut div

Angular scroll from bottom to top
Selfish Spider

Jawaban yang mirip dengan “Gulir otomatis ke bawah sudut div”

Pertanyaan yang mirip dengan “Gulir otomatis ke bawah sudut div”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya