重定向到新页面

时间:2010-03-25 05:57:29

标签: php javascript

我已经定义了一个函数,我想在新窗口中打开一个页面。该函数具有以下代码:

echo"<script>window.location.href='http://localhost/paymentsystem/views/payment.php?id=".$id."'</script>" ;  

现在它在同一个窗口打开页面。

我想知道如何在新标签页上打开此页面?

此致

的Pankaj

3 个答案:

答案 0 :(得分:2)

尝试:

window.open("yourSite.html","plain","width=470,height=452");

而不是window.location.href

答案 1 :(得分:2)

如果您更喜欢使用html打开新窗口,那么您必须使用下面的

       <a href="example.html" target="_blank">link text</a> 

并在javascript中实现它,你必须在下面尝试

echo“window.open('http://localhost/paymentsystem/views/payment.php?id=”。$ id。“')”;

我希望这会对你有帮助..

感谢名单。

答案 2 :(得分:0)

您也可以使用

<a href="http://example.com" target="_blank">Click here</a>

对于一个更简单的解决方案,虽然我相信'target'属性很快就会被弃用。