jQuery检查元素是否存在
这个问题在这里已经有了答案:
从...开始
if (!jQuery('.fixit').length) return;
if ($('.fixit').length) {
var el = jQuery('.fixit'),
offset = el.offset(),
elHeight = el.height(),
scrollTop = jQuery(window).scrollTop()
if (((offset.top + 400) < scrollTop - el.height())) {
el.addClass('fixedElement');
}
if (scrollTop === 0) {
el.removeClass('fixedElement');
}
}
链接地址: http://www.djcxy.com/p/83691.html