当它到达页面顶部时,我正在尝试将 div 更改类固定。
我有这个JavaScript代码。
<script type="text/javascript">
$(function () {
var top = 200;
var y = $(this).scrollTop();
if (y >= top) {
// if so, add the fixed class
$('#kolonne-v').addClass('fixed');
} else {
// otherwise remove it
$('#kolonne-v').removeClass('fixed');
}
});
</script>
我究竟做错了什么?