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

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

為什么我沒(méi)有得到 scrollTop 值?

為什么我沒(méi)有得到 scrollTop 值?

瀟瀟雨雨 2023-01-06 15:56:45
我想獲得一個(gè)元素的scrollTop值,這樣我就可以根據(jù)它觸發(fā)其他事情??蛻舳藨?yīng)始終檢查scrollTop值,因此我使用onscroll來(lái)運(yùn)行該函數(shù)。它不起作用,我總是得到 0。<!DOCTYPE html><html><head></head><body onscroll="get_y_pos();">  <div style="height: 400px; width: 300px; background: red; margin: 20px;"></div>  <div style="height: 400px; width: 300px; background: red; margin: 20px;"></div>  <div id="element_to_watch" style="height: 400px; width: 300px; background: blue; margin: 20px;"></div>  <div style="height: 400px; width: 300px; background: red; margin: 20px;"></div>  <div style="height: 400px; width: 300px; background: red; margin: 20px;"></div></body>  <script>    function get_y_pos() {      var pos = document.getElementById('element_to_watch').scrollTop;      console.log(pos);    }  </script></html>
查看完整描述

2 回答

?
心有法竹

TA貢獻(xiàn)1866條經(jīng)驗(yàn) 獲得超5個(gè)贊

正如@bertida 所述,要實(shí)現(xiàn)這一點(diǎn),getBoundingClientRect().top應(yīng)該使用而不是scrollTop.


<!DOCTYPE html>

<html>

<head></head>

<body onscroll="get_y_pos();">

  <div style="height: 400px; width: 300px; background: red; margin: 20px;"></div>

  <div style="height: 400px; width: 300px; background: red; margin: 20px;"></div>

  <div id="element_to_watch" style="height: 400px; width: 300px; background: blue; margin: 20px;"></div>

  <div style="height: 400px; width: 300px; background: red; margin: 20px;"></div>

  <div style="height: 400px; width: 300px; background: red; margin: 20px;"></div>

</body>

  <script>

    function get_y_pos() {

      var pos = document.getElementById('element_to_watch').getBoundingClientRect().top;

      console.log(pos);

    }

  </script>

</html>


查看完整回答
反對(duì) 回復(fù) 2023-01-06
?
元芳怎么了

TA貢獻(xiàn)1798條經(jīng)驗(yàn) 獲得超7個(gè)贊

正如有人已經(jīng)說(shuō)過(guò)的那樣,您需要向元素添加垂直滾動(dòng)條才能檢查其scrollTop值。檢查更新的代碼片段。


<!DOCTYPE html>

<html>

<head></head>

<body onscroll="get_y_pos();" style="overflow: visible;">

  <div style="height: 400px; width: 300px; background: red; margin: 20px;"></div>

  <div style="height: 400px; width: 300px; background: red; margin: 20px;"></div>

  <div id="element_to_watch" style="height: 300px; width: 300px; background: blue; margin: 20px; overflow-y: scroll;">

    <h1 style="height: 500px">Hallo</h1>

  </div>

  <div style="height: 400px; width: 300px; background: red; margin: 20px;"></div>

  <div style="height: 400px; width: 300px; background: red; margin: 20px;"></div>

</body>

  <script>

    function get_y_pos() {

      var pos = document.getElementById('element_to_watch');

      console.log(pos.scrollTop);

    }

  </script>

</html>


查看完整回答
反對(duì) 回復(fù) 2023-01-06
  • 2 回答
  • 0 關(guān)注
  • 274 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

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