我想在html Dom中的所有Image标签上添加圆形标签图像(25 * 25像素)。 它可以工作但是我的代码的位置有时会改变,它经常显示在图像下。
这是我的代码:
jQuery("img").each(function() {
var image = jQuery(this);
if ((image.width() >= 512) && (image.width() <= 2048)){
image.parent().css('display', 'inline-block');
var top_pos = image.offset().top+200, left_pos = image.offset().left+150;
image.parent().append('<div class="tag_image first_tag_image1" id="first_draggable1" style="position:absolute;'+'top:'+top_pos+'px;'+'left:'+left_pos+'px;">');
//do something
}
});
任何知道该怎么做的人? 如有任何问题,请添加评论。
答案 0 :(得分:2)
你必须使用:之前。 例如image.before('// some code')