0
我在Chrome和Safari中測試,它工作正常。它只是第一個條件。 我做錯了什麼? Sorry..but我在JQuery.I很新的使用jQuery v1.9.1的和IE11下面是腳本:爲什麼JQuery不能在IE和FireFox中工作?
<script>
jQuery(document).ready(function() {
jQuery(".next").click(function() {
var position = $('body').scrollTop();
if (position == 0) {
jQuery('html, body').animate({
scrollTop: 642
});
} else if (position >= 0 && position <= 642) {
jQuery('html, body').animate({
scrollTop: 1735
});
} else if (position >= 642 && position <= 1735) {
jQuery('html, body').animate({
scrollTop: 2403
});
} else if (position >= 1735 && position <= 2403) {
jQuery('html, body').animate({
scrollTop: 3236
});
} else if (position >= 2403 && position <= 3236) {
jQuery('html, body').animate({
scrollTop: 6430
});
} else if (position >= 3236 && position <= 6430) {
jQuery('html, body').animate({
scrollTop: 7320
});
} else if (position >= 7191) {
jQuery('html, body').animate({
scrollTop: 0
});
}
})
});
</script>
您正在使用什麼版本的jQuery? – Rui
你引用了jQuery庫嗎? – christiandev
什麼版本的IE和jQuery? – j08691