0
<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>

任何人都可以帮我修复此代码吗?试图做一些事情,如果网站 url 然后返回 false 否则转到锚点

4

1 回答 1

2

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

if (location.href != "http://www.mysitemain.com") {
  window.onload = function() {
    document.getElementById('wrap').scrollIntoView(true);
  };
}
于 2013-02-16T14:39:30.953 回答