0

我有链接将通过 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>"; ?>
4

2 回答 2

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>";
于 2013-10-15T10:16:45.027 回答
0
window.open(''+self.location,'mywin','left=20,top=20,width=500,height=500,toolbar=1,resizable=0');

希望这对你有帮助

于 2013-10-15T10:22:47.323 回答