我的网站在URL中包含一个名为“onsale”的特定参数。我希望页面在页面加载时滚动到某个div,并带有一个名为“bbbb”的类,如果参数“onsale”在URL中。到目前为止,这是我的代码:
var url = window.location.href;
if (url.search("onsale") >= 0) {
//found it, now do something
console.log("yep");
jQuery('html,body').animate({
scrollTop: jQuery(".bbbb").offset().top
});
//jQuery("body")jQuery('.four-column-sales-pod').scrollTop();
}
滚动效果有两个问题。
答案 0 :(得分:0)
试试这个:
$(function() {
var url = window.location.href;
if (url.search('onsale') != -1) {
$('html, body').animate({
scrollTop: $('.bbbb').offset().top
}, 500);
}
});