在父窗口JS或PHP后面打开窗口

时间:2015-12-30 05:10:25

标签: javascript php jquery

我需要在父窗口后面打开一个窗口,而我却找不到任何要做的事情。 有人可以帮我提供这些代码或提示吗?

Parent.php

<script type="text/javascript">//<![CDATA[
    $(document).ready(function () {

        $('#link').click(function(event){
            event.preventDefault();
            console.log(window.opener.location);
            var goBack = window.open('', 'parent');
            goBack.focus();

    });
    });//]]> 

    </script>


    <body>

        <a id="link" href="#">Return to Parent </a>

    </body>

child.php

DateTime nw = DateTime.now

链接代码:http://pontodosjogos.com/testegrana.php

1 个答案:

答案 0 :(得分:1)

您可以使用此代码显示弹出式窗口:

<script>

//specify page to pop-under
var popunder="http://yahoo.com";

//specify popunder window features
//set 1 to enable a particular feature, 0 to disable
var winfeatures="width=800,height=510,scrollbars=1,resizable=1,toolbar=1,location=1,menubar=1,status=1,directories=0";

function loadpopunder()
{
 win2=window.open(popunder,"",winfeatures);
 win2.blur();
 window.focus();
}    

loadpopunder();


</script>

来源:http://www.javascriptkit.com/script/script2/popunder.shtml

请记住,浏览器可能会阻止弹出式窗口,从用户角度看这些浏览器通常很烦人,所以尽量不要过度使用。