我在我的标题中有这个代码,它将页面滚动到一个特定的锚点,但是这段代码会滚动我的所有页面。我想在我的HomePage中添加一个例外。我怎样才能做到这一点? THX!
//this code is between <head> tags in my header file.
<script
function scroll(){
$('html, body').animate({
scrollTop: $('#scroll').offset().top
}, 1000);
}
</script>
//this code is at the bottom of the page in my header file
//anchor
<a href="#scroll" id="scroll"></a>
//this code is in the header file
//called
<body onload="scroll()">
答案 0 :(得分:0)
如果您不希望代码在某个页面上运行,请不要将javascript添加到该页面,或者不要调用该功能。
但是,您发布的代码本身并没有做任何事情,它只是一个功能(您不会显示它被调用的位置),并且您的问题已经制定相当模糊,所以我不得不猜测你想要什么。所以我真的没有足够的信息来提供更具体的答案。