我有以下作为html代码来显示带动画的圆形图像,如何链接实际图像文件,尝试了a-href函数但没有链接,使用的代码如下:
[feature bgcolor="#5cc2e5" textcolor="white" border="false" img="images/feature/01.jpg"]
示例见:http://www.envande.com/index.php
感谢。
答案 0 :(得分:0)
您可以使用此jQuery代码使整个div可单击:
jQuery(".feature-rounded").click(function() {
window.location = jQuery(this).find("a").attr("href"); // use link from readmore button
return false;
});
作为替代方案,您是否尝试将代码包装在<a href...
标记内? (我假设您使用插件生成网站上显示的HTML输出):
<a href="yourlink.html">[feature bgcolor="#5cc2e5" textcolor="white" border="false" img="images/feature/01.jpg"]</a>