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>

我的服务器上有 2 个 ip 如果它是 .98 我想导航到 xxx 如果不​​是 yyyy

很简单,因为它适用于所有浏览器而不是 opera

在歌剧中,只有 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 回答