从php脚本开始的javascript window.open

时间:2013-10-15 10:07:28

标签: javascript php

我有链接,它将按ID打开新页面,现在我希望它在新窗口中打开(不是标签),它不会工作你能帮忙吗?

<?php echo "<a href='ureditev_v_formo_test.php?ID=" . $row1['ID'] . "' onclick='javascript:window.open(this.href,'targetWindow','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=200,height=500')return false;'>" . $row1['ImePriimek'] . "</a>"; ?>

2 个答案:

答案 0 :(得分:1)

试试这个,

echo "<a href='ureditev_v_formo_test.php?ID='".$row1['ID']."' onclick=\"javascript:window.open(this.href,'targetWindow','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=200,height=500');return false;\">" . $row1['ImePriimek'] . "</a>";

答案 1 :(得分:0)

window.open(''+self.location,'mywin','left=20,top=20,width=500,height=500,toolbar=1,resizable=0');

希望这能帮到你