Я пытаюсь сделать простой вызов в родительский класс из модального всплывающего окна, но IE борется со мной все время.Будем очень благодарны за любые предложения, чтобы обойти это.
Ниже приведен упрощенный код, который я пытаюсь использовать.Он хорошо работает в FireFox, но в IE выдает ошибку: «Объект не поддерживает это свойство или метод», ссылаясь на строку кода в блоке «Catch».Это означает, что строка в блоке Try и Catch не работает.
parent.html
<html><head>
<script>
function callMain(msg)
{
alert(msg);
}
function modalWin() {
if (window.showModalDialog) {
window.showModalDialog("topFrame1.html","name",
"dialogWidth:255px;dialogHeight:250px");
} else {
window.open('topFrame1.html','name',
'toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,modal=yes');
}
}
function getMainFrameVal()
{
return document.getElementById("mainframe").value;
}
</script>
</head> <body>
<a href="#" onclick="modalWin()" >PopUpWindow</a>
<form>
<input type=text id="mainframe" value="main"/>
</body></html>
topFrame1.html
<html><head>
<script type="text/javascript">
function getMain(){
try{
alert("1 "+ window.opener.getMainFrameVal());
}catch(e)
{
alert("2 " +window.parent.getMainFrameVal());
}
}
</script>
</head> <body>
TOP <a href="#" onclick="getMain()">click for main</a> <br/><br/>
</body></html>