2
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  
}     
4

1 回答 1

1

您无法parent.window从模式对话框中关闭。使用window.close()top.close()关闭模式。

Chrome 内部有一个错误returnValue,似乎尚未修复,请尝试以下方法:

showModalDialaog 未在 Chrome 中返回值

铬/问题/详细信息?id=42939

于 2012-12-06T08:10:15.663 回答