如果图片没有链接,我想显示不同的图片
JS Fiddle here https://jsfiddle.net/xm3ecb59/1/
<?php if (!empty('url')){ ?>
<a href="">
<img src="dog.jpg" width="400" alt="">
</a>
<?php } else { ?>
<img ="/cat.jpg" width="500" alt="">
<?php } ?>
答案 0 :(得分:1)
您只需添加src
,就像......
<?php if (!empty('url')){ ?>
<a href="http//:www.go.com">
<img src="" width="400" alt="">
</a>
<?php } else { ?>
<img src="path to image/cat.jpg" width="500" alt="">
<?php } ?>