我有一个生成图像的 div .result
。我需要在该 div 中设置一个背景图像,作为生成图像之上的一个图层。我有以下内容,但无法显示图像:
image.appendTo($(".result"))
$button = $('<button class="btn btn-default remove">')
.text('Remove')
.on('click', function () {
image.remove();
$(this).remove();
return false;
});
$button.appendTo($(".result").css("background-image", "url('iphone_5.jpg') no-repeat").css("z-index", "1000"));
});
屏幕截图右侧的图像是渲染的裁剪。您可以在背景中看到图像(沿着顶部和左侧边框),该图像应该位于渲染图像的顶部。