//a.html<html>
<head>
<title>a</title>
<script>
function show(){
var str=window.showModalDialog("b.html");
document.getElementById("iframe1").src=str;
}
</script>
</head>
<body>
<iframe name=iframe1 id=iframe1 src="#"></iframe>
<input type=button value="ok" onclick=show()>
</body>
</html>//b.html
<html>
<head>
<title>b</title>
<script>
function a(){
returnValue="http://www.baidu.com";
window.close();
}
</script>
</head>
<body>
<input type=button value="ok" onclick=a()>
</body>
</html>只不过在改变src时关掉了Modal窗口,lz不介意吧