未在框架中查看时重定向

时间:2013-03-22 07:36:40

标签: html redirect

我有一个wc.html,我的index.html包含代码:

<!doctype html>
<html>
    <head>
        <meta charset="utf-8">
        <title>My title</title>
    </head>
    <frameset rows="*">
        <frame src="wc.html">
    </frameset>
    <noframes></noframes>
    <body>
    </body>
</html>

我希望当单独查看wc.html而不是索引时,它会重定向到索引页面。

我该怎么做?提前谢谢。

2 个答案:

答案 0 :(得分:0)

试试这个,

if(window.parent.location.href==undefined){
   window.location="index.html";
}

答案 1 :(得分:0)

你可以试试这个:

var location = window.location.href;
    if(location.indexOf('wc') != -1 || location == undefined){
        window.location.href = "index.html";
    }