我有一个带有背景图像的 DIV。但我的要求是如何根据背景图像的高度和宽度扩展 DIV 大小。我在这个链接的帮助下尝试了一些代码。
var src = $('#divID').css('background-image').
replace('url', '')
.replace('(', '')
.replace(')', '')
.replace('"', '')
.replace('"', '');
$('body').append('<img id="appendedImg" src="' + src + '" style="height:0px;width:0px"');
var img = document.getElementById('appendedImg');
var width = img.clientWidth;
var height = img.clientHeight;
$('#appendedImg').detach();
如果可能的话,我只是在寻找任何优雅的解决方案。