showModalDialog页面跳转解决办法

最近做项目,发现IE7及其以上window.open弹出的不是一个框而是一个页面,这个无疑是个悲剧,只有用showModalDialog了。

情况一:弹出的页面自身有链接,点击之后还想是在这个框里。

在标签<head>和<body>标签之间加上<base target="_self"/>

如果没有这个会打开新页面。

然后在需要链接的地方<a href="customerManage.html">就可以了

如果在页面customerManage.html中想返回来可以这样

在该页面同样地方加上<base target="_self"/>

<a href="presence.do?method=showWindow" style="color:#03005c;">返回</a>

情况二:想点击之后去主窗口(我们的项目主页是几个frame结构,其中主体部分名叫main)

<a href="customer.do?method=append" target="main" onclick="window.close()">

你可能感兴趣的:(html)