Jump to content
  • 0

Перехват события из всплывающего окна


freeneutron
 Share

Question

Хочу скрипт одного (исходного) окна заставить перехватывать события другого окна, открытого методом window.open() из скрипта исходного. Вот весь скрипт:

<script>
wopen = function(site){ // Функция открывания окна
var newWin = window.open("http://"+site, // Открываем окно
"JSSite",
"width=420,height=230,resizable=yes,scrollbars=yes,status=yes"
);
newWin.attachEvent("onclick", function(){ // Пытаемся добавить к новому окну обработчик события
alert('ok-1');
window.alert('ok-2');
newWin.opener.alert('ok-3');
});
}
</script>
// Так запускаем Функцию открывания окна
<a href='#' onclick='wopen("http://forum.htmlbook.ru")'>forum</a>

Проблема в том, что он не работает. Я рассчитываю по клику во всплывшем окне увидеть появление алерта в исходном окне, с текстом 'ok-1', 'ok-2' или 'ok-3'. Но алерты молчат. Консоль ошибок тоже ни чего не говорит. Браузер: Opera 11.11. Кто-нибудь знает, как делать такой перехват?

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy