我有一个选择下拉列表,当滚动条到达底部但无法执行时,我想在其中加载更多选项。我使用了以下代码,但这对我不起作用
$(function () {
var $win = $('#CouponProduct_0_id_brand');
$win.scroll(function () {
if ($win.scrollTop() == 0)
alert('Scrolled to Page Top');
else if ($win.height() + $win.scrollTop()
== $(document).height()) {
alert('Scrolled to Page Bottom');
}
});
});