这就是我所拥有的
var path = $('#sprite').css('background-image').replace('url', '').replace('(', '').replace(')', '').replace('"', '').replace('"', '')
var tempImg = '<img id="tempImg" src="' + path + ' "/>';
$('body').append(tempImg);
alert($('#tempImg').width());
结果是0
,但是如果我进入控制台并输入$('#tempImg').width()
,我们会得到正确的宽度。
那么,看起来附加只是在执行代码后“加载”,我需要在附加项目后使用我的代码,有没有办法?