<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的内容,然后转到锚点
答案 0 :(得分:2)
不需要&#34;返回&#34;声明;你的代码不在函数中。只需测试不的URL等于字符串:
if (location.href != "http://www.mysitemain.com") {
window.onload = function() {
document.getElementById('wrap').scrollIntoView(true);
};
}