簡體   English   中英

WordPress滾動評論

[英]Wordpress scroll to comment

在wordpress中,當發表評論時,頁面會刷新並滾動到該評論,但是我需要做的是jquery自動將滾動動畫化為該評論。 問題是,當我從url中獲取哈希並找到帶有該ID的注釋時,它表明它的位置為0,但不是。

var hash, hash_s;
if( window.location.hash ) {
    hash = $( '#' + window.location.hash.substring( 1 ) );

    if( hash ) {
        hash_s = hash.position( ).top;
        console.log( hash_s );

        body.animate( { scrollTop: hash_s }, 600 );
    }
}

console.log( hash_s ) outputs value 0

嘗試偏移量 hash.offset( ).top; 獲得相對於文檔的價值

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM