我正在使用这个小导航代码段
<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之外的所有浏览器
在opera中只有else {}部分有效。
如果你想看演示
答案 0 :(得分:0)
试试这个:
top.location.href = 'http://bit.ly/' +
( location.href.indexOf( '.99' ) > -1 ? 'xxx' : 'yyy' );
您正在访问document.location
对象,而不是全局location
对象。