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 に答える