嗨,这是自定义PHP管理面板。我想在管理面板中添加URL链接并附加每个图像的每个链接。下面是添加图像的代码
while($client_images = mysql_fetch_array($client_images_query)){
?>
<td class="response" style="width: 25%;">
<img class="img-responsive" style="max-width: 40%;" src="uploads/<?php echo $client_images['image']; ?>" alt="" />
答案 0 :(得分:2)
您可以使用
包围标记 <a href="http://www.google.com"><img class="img-responsive" style="max-width: 40%;" src="uploads/<?php echo $client_images['image']; ?>" alt="" /></a>
答案 1 :(得分:0)
function timer() {
if (!t) {
t = setTimeout(add, 997.5);
}
}
document.getElementById("stop").onclick = function () {
clearTimeout(t);
t = null;
}
试试这个