问题:
在内容溢出且自动溢出的 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>
说明:
此方法提供了一种可靠的方法,可以在以下情况下触发事件:用户滚动到特定 div 的末尾,允许动态加载内容或任何其他所需的功能。
以上是如何在 jQuery 中检测用户何时滚动到 Div 底部?的详细内容。更多信息请关注PHP中文网其他相关文章!