我希望根据 div 的背景图像何时加载来运行一个函数。我错过了什么?
查询
$(function () {
$('.productnew .imgframe').each(function () {
$(this).load(function () {
$(this).attr("style", $(this).attr("style").replace("background:", ""));
$(this).attr('style', 'background:url(images/new.png), ' + $(this).attr('style'));
});
});
});
HTML
<div class="poster productnew"><div class="imgframe" style="background:url(images/posters/bicycle.jpg);"></div>