window.showModalDialog

    最近写了个关于window.showModalDialog的页面,这次作的和以前有点不同。
以前为了能在window.showModalDialog打开的页面中更新页面,常常用Iframe来起个中间作用。而这次有个新的方法。
父页面Js代码。
rtnValue =window.showModalDialog('MSTR01_02.aspx‘)
rtnValue是接到子页面的返回值。
子页面代码。
function setOpenerValue(){
   window.returnValue =???
}
为了能在本页面提交本页面要在asp页面头<head>中加入
< base target = " _self " >

你可能感兴趣的:(window.showModalDialog)