我有以下html
<a class="lid" id="1">
<div class="map_image">
<img width="220" height="145" alt="" src="photo.jpg" typeof="foaf:Image">
</div>
</a>
我使用以下 jquery 来获取链接的 id。
function onlid {
.setContent($(this).attr("id"));
}
$('.lid').on('mouseover', onlid);
所以在这种情况下,内容设置为 1,因为类 lid 的 id 是 1。
我想要的是获取整个 html 并将其设置在 1 之后。
所以内容将是
1 <img width="220" height="145" alt="" src="photo.jpg" typeof="foaf:Image">
我正在尝试类似的东西
.setContent($(this).attr("id") + $(this.map_image).html());
任何帮助表示赞赏。
谢谢