简单的javascript如果和其他。如果url返回,则滚动到锚点

时间:2013-02-16 14:35:32

标签: javascript scroll tags

<script type="text/javascript">
if (location.href == "http://www.mysitemain.com")
{
return false;
} 

else 

{

window.onload = function() {
var el = document.getElementById('wrap');
el.scrollIntoView(true);
}

}
</script>

任何人都可以帮我修复此代码吗?尝试制作类似于网站网址然后返回false的内容,然后转到锚点

1 个答案:

答案 0 :(得分:2)

不需要&#34;返回&#34;声明;你的代码不在函数中。只需测试的URL等于字符串:

if (location.href != "http://www.mysitemain.com") {
  window.onload = function() {
    document.getElementById('wrap').scrollIntoView(true);
  };
}