kaedah jquery scrollTop().


  Hasil terjemahan:

skrol

Inggeris [skrəʊl] Amerika [skroʊl]

n . Untuk menggulung; (pada skrin komputer) gerakkan (data, dsb.) dari atas ke bawah, gulungkan halaman

vi (seperti skrol) untuk memaparkan teks pada skrin

atas

Bahasa Inggeris [tɒp] AS [tɑ:p]

n bahagian atas; teratas ;

vt yang paling tinggi;

kaedah jquery scrollTop().sintaks

Fungsi: Kaedah scrollTop() mengembalikan atau menetapkan kedudukan menegak bar skrol elemen padanan. offset atas tatal merujuk kepada offset bar tatal berbanding bahagian atasnya. Jika kaedah ini tidak menetapkan parameter, mengembalikan offset dalam piksel dari bahagian atas bar skrol. sintaks . Menentukan offset, dalam piksel, dari bahagian atas bar skrol.


Nota:

Kaedah ini sah untuk kedua-dua unsur yang kelihatan dan tidak kelihatan. Apabila digunakan untuk mendapatkan nilai, kaedah ini hanya mengembalikan offset atas tatal bagi elemen padanan pertama. Apabila digunakan untuk menetapkan nilai, kaedah ini menetapkan offset atas tatal semua elemen padanan.

kaedah jquery scrollTop().contoh

<html>
<head>
<script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $(".btn1").click(function(){
    $("div").scrollTop(100);
  });
  $(".btn2").click(function(){
    alert($("div").scrollTop()+" px");
  });
});
</script>
</head>
<body>
<div style="border:1px solid black;width:200px;height:200px;overflow:auto">
This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text.
</div>
<button class="btn1">把 scroll top offset 设置为 100px</button>
<br />
<button class="btn2">获得 scroll top offset</button>
</body>
</html>
Jalankan Instance »

Klik butang "Run Instance" untuk melihat contoh dalam talian

Rumah

video

Soal Jawab