第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

滾動到另一個組件的特定標簽

滾動到另一個組件的特定標簽

GCT1015 2022-12-22 15:36:19
如何通過單擊按鈕從一個組件導(dǎo)航到另一個組件。就像我在標題組件中有一個帶有“主頁”、“關(guān)于”...的導(dǎo)航欄<li><a class="text-white" href="#home">Home</a></li><li><a class="text-white" href="#about">About</a></li><li><a class="text-white" href="#jobs">Opportunities</a></li><li><a class="text-white" href="#volunteers">Volunteers</a></li><li><a class="text-white" href="#donors">Donors</a></li><li><a class="text-white" routerLink="/contact">Contact</a></li>還有一個像這樣叫做 home 的組件<section id="home">  <app-home-component></app-home-component></section><section id="about">  <app-about></app-about></section><section id="jobs">  <app-jobs></app-jobs></section><section id="volunteers">  <app-volunteers></app-volunteers></section><section id="donors">  <app-donors></app-donors></section>現(xiàn)在,當我單擊導(dǎo)航欄中的關(guān)于按鈕時,它應(yīng)該滑動到主頁組件中的關(guān)于組件。我不知道該怎么做。我嘗試使用 id 和 href 但它沒有用。那么有什么建議嗎?
查看完整描述

2 回答

?
當年話下

TA貢獻1890條經(jīng)驗 獲得超9個贊

使用角度特征片段讓瀏覽器處理它

    <a routerLink="" fragment="volunteers"> Volunteers                 </a>

結(jié)帳角度片段


查看完整回答
反對 回復(fù) 2022-12-22
?
烙印99

TA貢獻1829條經(jīng)驗 獲得超13個贊

在標頭組件中,將 queryParams 添加到鏈接中:


<li><a class="text-white" [routerLink]="['/home']" [queryParams]="{id: 'home'}">Home</a></li>

<li><a class="text-white" [routerLink]="['/home']" [queryParams]="{id: 'about'}">About</a></li>

在home組件中檢查 queryParams 的路由,如果有任何 id,你應(yīng)該將它滾動到視圖中:


constructor(private route: ActivatedRoute) {

    this.route. queryParams.subscribe(params => {

        if (params && params.id) {

            let element = document.getElementById(params.id);

            element && element.scrollIntoView();

        }

    });

}


查看完整回答
反對 回復(fù) 2022-12-22
  • 2 回答
  • 0 關(guān)注
  • 78 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號