PHP:打开新窗口?

时间:2011-02-24 22:08:49

标签: php javascript-events

据我所知,javascript是客户端而PHP是服务器端,在下面的代码中,无论如何,我是否可以弹出一个新窗口或拨打电话打开一个新窗口? echo语句不起作用。任何想法都非常感谢。谢谢!

<?php 

class testpop__class 
{ 
    function testpop__method(&$bean, $event, $arguments=null) 
    { 
        if ($event != 'before_save') return; 
        // Insert your custom logic between these comments 

        // Insert your custom logic between these comments 
    } 
} 
?>

2 个答案:

答案 0 :(得分:3)

严格使用PHP,没有。但是,如果您使用ECHO输出javascript,您可以让javascript打开一个新窗口。

答案 1 :(得分:1)

您可以使用echo打印出一些javascript。像这样

echo "<script type='javascript'>window.showModalDialog('webpage.php')</script>";

希望这有帮助。