問題:
在內容溢出且自動溢出的div 元素中,我們如何使用jQuery 檢測用戶何時滾動到div 底部?
底部滾動偵測的jQuery 程式碼:
<code class="jQuery">jQuery(function($) { $('#flux').on('scroll', function() { if($(this).scrollTop() + $(this).innerHeight() >= $(this)[0].scrollHeight) { // Event triggered when the end of the div is reached // Perform desired actions here } }) });</code>
說明:
以上是如何在 jQuery 中偵測使用者何時滾動到 Div 底部?的詳細內容。更多資訊請關注PHP中文網其他相關文章!