我有这段代码:
<img ex:if-exists=".image" ex:src-content=".image" width="150">
如何在链接中将此图像转换为自己的源?
答案 0 :(得分:0)
使用vanilla HTML,您可以将其包装在锚标记中(假设您的图片网址为.image
):
<a href=".image">
<img ex:if-exists=".image" ex:src-content=".image" width="150">
</a>
答案 1 :(得分:0)
<a ex:if-exists=".image" ex:href-content=".image" target="_blank">
<img ex:if-exists=".image" ex:src-content=".image" width="150"></a>
找到答案
感谢您的帮助@winhowes @MCMastery和@OliverWilliams!