在IE8中js模态窗口中想返回上一个页面,history.back()无法使用,怎么处理
在main页面,我点击选择按钮,弹出模态窗口a.html,有很多组数据可供选择,在a.html中,选择其中一个数据点击超链接,可查看其详细信息,同时a.html替换成b....
在main页面,我点击选择按钮,弹出模态窗口a.html,有很多组数据可供选择,在a.html中,选择其中一个数据点击超链接,可查看其详细信息,同时a.html替换成b.html,b.html有一个返回按钮,点击能返回a.html,a.html中点击关闭则关闭模态窗口
---------------------------------
main.html
<head>
<SCRIPT language=JavaScript>
function link(){
window.showModalDialog('a.html',window,'status:no;resizable:no;dialogHeight:500px;dialogWidth:850px;unadorne:yes;scrollbars=no');
}
}
</SCRIPT>
</head>
<body>
...........
<table><tr> <td><input type=“button” onclick=“link()”></td></tr></table>
</body>
---------------------------------------
a.html
<head>
<SCRIPT language=JavaScript>
function backTo(){ window.close();}
</SCRIPT>
</head>
<body>
.......
<table><tr> <td><a href="b.html">001</a><td></tr>
<tr><td><input type="button" onclick="backTo()"></td></tr>
</table>
</body>
-----------------------
b.html
<body>
.....
<input type="button" onclick="history.back()">
</body> 展开
---------------------------------
main.html
<head>
<SCRIPT language=JavaScript>
function link(){
window.showModalDialog('a.html',window,'status:no;resizable:no;dialogHeight:500px;dialogWidth:850px;unadorne:yes;scrollbars=no');
}
}
</SCRIPT>
</head>
<body>
...........
<table><tr> <td><input type=“button” onclick=“link()”></td></tr></table>
</body>
---------------------------------------
a.html
<head>
<SCRIPT language=JavaScript>
function backTo(){ window.close();}
</SCRIPT>
</head>
<body>
.......
<table><tr> <td><a href="b.html">001</a><td></tr>
<tr><td><input type="button" onclick="backTo()"></td></tr>
</table>
</body>
-----------------------
b.html
<body>
.....
<input type="button" onclick="history.back()">
</body> 展开
1个回答
展开全部
location.href=document.referrer;
试试这个
试试这个
追问
试了下,我想的是在模态窗口中返回上一页,仍然是原来的模态窗口,而不是新打开一个非模态窗口
追答
document.referrer 來訪路徑
A.htm 跳去 B.htm 時,
B.htm 使用 location.href=document.referrer; 會正常跳回A.htm
當直接打開 B.htm document.referrer 是沒有值的
=================================================
1.能把你想實現的效果描述清楚嗎?
2.你現在所寫的代碼發出來,要不然 history.back() history.go(-1) location.href=document.referrer; 不可能不能使用的
window.open(document.referrer);
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询