Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用超链接在新选项卡中打开图像。此图像来自数据库。我试过这段代码
<td><img src='upload/<?=$row['misper_rep_pic']?>' height='50' width='50'></td>
但是当我使用超链接时图像不显示。那么如何在这里使用超链接以便我也看到图像。
你的问题有点混乱。
你的意思是这样吗?
<td> <a href='upload/<?=$row['misper_rep_pic']?>' target='_blank'> <img src='upload/<?=$row['misper_rep_pic']?>' height='50' width='50'> </a> </td>