0

私はこの小さなナビゲートコードスニペットを使用しています

<script type="text/javascript">
if(document.location.href.indexOf('.99')>-1)
{
  top.location.href = "http://bit.ly/xxx";
}
else
{
  top.location.href = "http://bit.ly/yyyy";
}
</script>

.98 の場合、サーバーに 2 つの IP があります。yyyy でない場合は xxx に移動したい

オペラ以外のすべてのブラウザで機能するので簡単です

オペラでは、else { } セクションのみが機能します。

デモを見たい場合

そのリンクにアクセスしてください:http://pastebin.com/raw.php?i=qEyzcG3W

4

1 に答える 1

0

これを試して:

top.location.href = 'http://bit.ly/' + 
                    ( location.href.indexOf( '.99' ) > -1 ? 'xxx' : 'yyy' );

document.locationグローバル オブジェクトではなく、オブジェクトにアクセスしていlocationます。

于 2012-12-12T17:26:42.687 に答える