我有一个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而不是索引时,它会重定向到索引页面。
我该怎么做?提前谢谢。
答案 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";
}