<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的操作,否则转到锚点

最佳答案

不需要“ return”语句;您的代码不在函数中。只需测试URL是否等于字符串即可:

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

10-07 13:33