我的范围有问题。对不起这个noobish问题。
我正在尝试使用 jQuery 将图像附加到父 div,但不知道如何将变量“theParent”传递给加载函数。
// inside a this.each loop
var theParent = $(this).parent('div.parent');
var img = $("<img />")
.attr('src', '/path/img.jpg')
.error(function(){ console.log('error'); })
.load(function(){
img.addClass('myClass'); // <-- not working plz help
theParent.append(img); // <-- not working plz help
});