我有这个:
$(function() {
if () {
$('#content').css('position', 'fixed');
});
});
所以,现在我想要的是:如果 '#content' 的 'top' 为 0,我希望函数中写下的 css 发生。但我不知道如何在'if'之后的括号内写下来。
也许有人可以帮助我完成这个基本的 if 语句?
非常感谢提前!
编辑 - - - - - - - - - - - - - - -
似乎工作得越来越好,但仍然是一个问题..我现在有这个:
$(function() {
if ( $('#content').offset().top == 0) {
$('#content').css({'position' : 'fixed'});
}
else {
$('#content').css({'position' : 'relative'});
}
});
还有这个:
$(document).ready(function() {
$('#content').scrollTop('100%');
});
但现在 div 立即“固定”..