如何让html返回首页

来源:百度知道 编辑:UC知道 时间:2024/06/29 02:08:36
我的主页面用了frame框架,现在我在top页面有个按钮是“返回首页”怎样设置能让整个页面返回首页。

在<head>里加一个<base target="_top">
button.onclick=function(){
location.href="index.jsp";
}

<a href="javascript:history.back()">返回上一页</a>

在首页加上一句
<script>if(self !=top) top.location.href = window.location.href;</script>