-2

我有一个 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 单独查看而不是在索引中时,它会重定向到索引页面。

我怎么做?提前致谢。

4

2 回答 2

0

你可以试试这个:

var location = window.location.href;
    if(location.indexOf('wc') != -1 || location == undefined){
        window.location.href = "index.html";
    }
于 2013-03-22T08:13:25.760 回答
0

尝试这个,

if(window.parent.location.href==undefined){
   window.location="index.html";
}
于 2013-03-22T07:42:00.783 回答