0

我做了一个 php 链接,但我希望它在新窗口中以特定大小打开。这里的任何人都可以提出任何建议吗?链接是一个图像。

echo "<td><center><a href=\"edituser.php?id=$row[id]\"><img src=image/edit.png></a></center></td>";

该链接与数据库连接。它将打开一个表单来编辑用户数据。

4

4 回答 4

4

要在新窗口中打开,您必须将目标添加到您的 a 标签,例如:

<a href="http://example.com" target="_blank">Example Link</a>

要配置它打开的大小,afaik 你必须使用 javascript,

<a href="http://example.com" onclick="window.open(this.href, '_blank', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0'); return false;">Example Link</a>

这是一个JS 小提琴

于 2013-09-18T11:01:41.780 回答
1

试试这个

echo "<td><center><a target='_blank' href=\"edituser.php?id=$row[id]\"><img src=image/edit.png></a></center></td>";
于 2013-09-18T11:03:57.483 回答
0

这应该在新窗口中打开它:

<a target="_blank" href=\"edituser.php?id=$row[id]\"><img  width="200" height="150" src=image/edit.png></a>

您可以将“宽度”和“高度”属性添加到“img”标签。

于 2013-09-18T11:00:19.843 回答
0

我尝试了上面的代码,但不起作用。而不是“_blank”,我使用“新”

echo '<a href="www.google.com" target="new" > <img src="small.jpg"></a></div>';

我不太确定报价。你可以测试一下。

于 2017-12-19T00:29:31.843 回答