a href在新窗口中打开echo

时间:2016-04-09 13:11:10

标签: php echo

我想在新窗口中打开此链接:以下是否正确?

<a href="<?php echo "$link"; ?><?php echo $userRow['user_wallet']; ?> " target="_blank">Check Your Adress</a>

2 个答案:

答案 0 :(得分:-1)

我找到了在新页面中打开链接的方法代码是

<a target = '_blank' href="<?php echo "$link"; ?><?php echo $userRow['user_wallet']; ?>" >Check Your Adress</a>

答案 1 :(得分:-1)

使用window.open()的javascript来实现这一目标。

<a onclick="window.open(document.URL, '_blank', 'location=yes,height=700,width=550,scrollbars=yes,status=yes');">Open In New Window</a>

这应该对你有帮助。