onclick函數無法正常工作,因爲即使在關閉父窗口後仍會禁用所有鏈接。 在關閉彈出窗口時,父頁面鏈接不再工作。其他一切工作正常。彈出窗口無法正常工作
我的代碼是: -
function MyPopUpWin(message) {
var iMyWidth;
var iMyHeight;
//half the screen width minus half the new window width (plus 5 pixel borders).
iMyWidth = (window.screen.width/2) - (75 + 10);
//half the screen height minus half the new window height (plus title and status bars).
iMyHeight = (window.screen.height/2) - (100 + 50);
//Open the window.
var generator = window.open();
document.onclick=function() {
try{
generator.focus();
return false
}
catch(e){}
}
generator.document.write('<html><head><title>Pop uP</title>');
generator.document.write('<p style="color:#C52B27;">');
generator.document.write(message);
generator.document.write('</p>');
generator.document.write('</head><body>');
generator.document.write('<a href="javascript:self.close()"><img src="/img/save_orange.gif" border=0"> <\/a>');
generator.document.write('</body></html>');
generator.document.close();
}
.....感謝的人,它工作正常....但可以dere是一些其他的解決方案。最後,我做了一個彈出的問題,並提出這個解決方案,我的問題http://stackoverflow.com/questions/ 9376102 /如何禁用父窗口,而孩子窗口出現點擊按鈕上的參數.....但這次焦點代碼不工作在我的功能 – rcky 2012-03-09 11:55:55