3

我想使用 jQuery 将所有具有特定类的 img 元素切换为具有背景的 div。所以这一切:

<img class="specific" src="/inc/img/someimage.png" />

变成:

<div class="specificDiv" style="background: url(/inc/img/someimage.png); width: fromImageElementPX; height: fromImageElementPX;"></div>

我想这样做,以便我可以使用 css3 绕过角落。CMS 用户,客户,将只能插入 IMG 元素。

提前致谢。

4

5 回答 5

4

我能想到的最简单的方法:

$('.specific').replaceWith(function () {
    var me = $(this);
    return '<div class="specificDiv" style="background: url(' + me.attr('src') + '); width: ' + me.width() + 'px; height: ' + me.height() + 'px;"></div>';
});
于 2010-12-09T18:15:37.073 回答
2
$('img.specific').each(function(){ //iterate through images with "specific" class
    var $this = $(this), //save current to var
        width = $this.width(), //get the width and height
        height = $this.height(),
        img = $this.attr('src'), //get image source
        $div = $('<div class="specificDiv"></div>')
        .css({
            background: 'url('+img+')', //set some properties
            height: height+'px',
            width: width+'px'
        });
    $this.replaceWith($div); //out with the old, in with the new
})
于 2010-12-09T18:12:11.257 回答
1

这应该可以,但我还没有测试过。

var origImage = $(".specific");
var newDiv = $("<div>").addClass("specificDiv");
newDiv.css("background-image", "url('" + origImage.attr("src") + "')");
newDiv.width(origImage.width()).height(origImage.height());
origImage.replaceWith(newDiv);
于 2010-12-09T18:06:31.053 回答
0

http://jsbin.com/ozoji3/3/edit

$(function() {
  $("img.rounded").each(function() {
    var $img = $(this),
        src = $img.attr('src'),
        w = $img.width(),
        h = $img.height(),
        $wrap = $('<span class="rounded">').css({
            'background-image': 'url('+ src +')',
            'height': h+'px',
            'width': w+'px'
          });
    $(this).wrap($wrap);
  });
});

于 2010-12-09T18:08:34.147 回答
0

另一种选择(从 Andrew Koester 获取代码)是将其放入插件中。这就是它可能的样子......

$.fn.replaceImage = function() {
  return this.each(function() {
    var origImage = $(this);
    var newDiv = $("<div>").attr("class", "specificDiv");
    newDiv.css("background", "url('" + origImage.attr("src") + "')");
    newDiv.width(origImage.width()).height(origImage.height());
    origImage.replaceWith(newDiv);  
  });
};

然后,要执行它,只需调用这样的东西......

$(".specific").replaceImage();
于 2010-12-09T18:16:47.800 回答