var userChoice = showModalDialog("../Iframe.aspx?FormName=sample.aspx", window, "dialogTop:300px;dialogLeft:350px;dialogHeight:182px;dialogWidth:370px;help:no;scroll:no;status:no;");
alert(userChoice); /* here iam not able to get 'Y' */
if (userChoice == 'Y')
return true; else return false;
Below is the Sample aspx page:
input type="button" value="Yes" onclick="choice('Y')"
function userChoice(option)
{
window.returnValue = option;
alert(window.returnValue); /* here iam getting 'Y' */
parent.close(); // I have tried with self.close() also
}
问问题
6603 次
1 回答
1
您无法parent.window
从模式对话框中关闭。使用window.close()
或top.close()
关闭模式。
Chrome 内部有一个错误returnValue
,似乎尚未修复,请尝试以下方法:
于 2012-12-06T08:10:15.663 回答