1

我有下面的代码来打开一个可以正常工作的弹出窗口。弹出窗口有一个黑色背景,控制在弹出窗口本身代码的主体标签内。

当弹出窗口最初打开时,页面具有白色背景,然后在代码加载后变为黑色。这不会打扰我,但会打扰我的客户!

那么,有没有一种方法可以将bgcolor颜色属性从父页面上的 javascript 传递给弹出窗口,以便弹出窗口在打开时立即变为黑色。我希望这是有道理的!

这是我当前的代码:

// START OF POP UP ///////////////////////////////////////////////////

function PopupCenter(pageURL, title,w,h) {
    var left = (screen.width/2)-(w/2);
    var top = (screen.height/2)-(h/2);
    var targetWin = window.open (pageURL, title, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);
}

// END OF POP UP ///////////////////////////////////////////////////

<a href="javascript:void(0);" onClick="PopupCenter('page.asp', 'myPop1',678,550);" class="staffBioLinks">Click Here</a>
4

3 回答 3

2

是的。通过使用这样的东西:

<script type="text/javascript">
function PopupCenter(pageURL, title,w,h) {
    var left = (screen.width/2)-(w/2);
    var top = (screen.height/2)-(h/2);
    var targetWin = window.open ('about:blank', title, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);
    targetWin.document.body.style.backgroundColor='#000';
    targetWin.location.href=pageURL;
}
</script>

您打开一个空白页面,然后先设置背景颜色,然后重定向到要加载的 URL。在加载期间,页面是黑色的(在我的示例中)。

于 2012-09-28T22:41:43.203 回答
0

您可以将其作为查询字符串。如果您可以获得该值,那么它应该就像将其附加到页面 URL 的末尾一样简单。

page.asp将会page.asp?bgColor=xxxxxx

您可以根据需要处理弹出窗口另一侧的响应。

于 2012-09-28T22:41:53.400 回答
0

你可以这样做:

targetWin.document.bgColor = 'lightgreen';
targetWin.focus();
于 2012-09-28T22:43:20.563 回答