- 避免有人从你分帧的主页的帧中径直进入网站,而不是从 index.html 中进入?
-
发布时间:2010-11-09 14:44:12
发布时间:2010-11-09 14:44:12
在帧中的网页的<head></head>之间加入以下脚本代码:
<Script language="JavaScript">
if (top==self)
self.location.href=http://www.ikefeng.com/"index.html";
</Script>
这样,当有人从帧中进入网站时,就会自动重定向到主页文件 index.htm。