我正在尝试将帖子标题中的标题标签添加到div中的所有图片中。 所以我已经将这个jquery脚本添加到我的网站
$(window).load(function() {
posttitle = $(".postwr").find("h1.title").text().trim();
$(".post img").each(function() {
$(this).attr("title", posttitle)
});
});
HTML
<div class="postwr">
<h1 class="title">Title tags using jquery not working in IE8</h1>
<div class="post">
<img src="image.png"/>
</div></div>
它在chrome,ie7,firefox中运行良好,但是当在ie8中悬停图像时,标题没有出现,我不知道为什么。 希望得到你的帮助