使用dojo创建带有锚标记的链接

时间:2010-05-29 07:18:23

标签: javascript html dojo hyperlink

我有一个带链接的图片  <div id="img"><a href="src/blah.html"><img src="/src/img.png"/></a></div>  但我不想使用标签进行链接。页面在页面中有多个这样的条目,因为它正在填充搜索结果。一个页面中有10个或更多条目。所有内容都在{{1 }}

有一个想法就是dojo.help我完成那个

<div id="result"></div>

1 个答案:

答案 0 :(得分:1)

尝试以下代码:

<div id="result">
    <div class="imageContainer"><img location="src/blah.html" src="/src/img.png"></div>
</div>

dojo.query("#result .imageContainer img").connect("onclick", function() {
    var location = dojo.attr(this, "location");
    if (location) {
        window.location.href = location;
    }
});