我需要在站点图像上放置缩放图标。一些图像具有 float=left 或 float=right 样式。我可以使用 jQuery,这是我的问题的一个例子:http: //jsfiddle.net/4Nvbe/1/
我当前的代码:
$("a[rel^='lightbox']").each(function () {
$(this).prepend('<div class="zoom"></div>');
});
我需要在站点图像上放置缩放图标。一些图像具有 float=left 或 float=right 样式。我可以使用 jQuery,这是我的问题的一个例子:http: //jsfiddle.net/4Nvbe/1/
我当前的代码:
$("a[rel^='lightbox']").each(function () {
$(this).prepend('<div class="zoom"></div>');
});