我已经编写了一个jquery插件来向后缩放图像。在ie 8中,大图像的加载事件失败。我尝试过像:
var fullImage = container.find(options.fullSelector);
fullImage.attr('src', fullImageUrl).bind('load', function() {
content.fadeOut(options.fadeSpeed, function(){
if(slideContent.size()){
slideContent.slideUp(options.resizeSpeed, function(){
smallImage.hide();
fullImage.show();
fullImage.parent().andSelf().stop().animate({ width: options.fullWidth + 'px' }, options.resizeSpeed);
});
}
else{
smallImage.hide();
fullImage.show();
fullImage.parent().andSelf().stop().animate({ width: options.fullWidth + 'px' }, options.resizeSpeed);
}
});
});
错误说:对象不支持属性或方法。
我做错了什么?
谢谢
答案 0 :(得分:49)
首先设置load
处理程序,然后设置src
。
fullImage.bind('load', function() {
...
}).attr('src', fullImageUrl);
答案 1 :(得分:0)
这个怎么样?
var test = function($what) {
$('#debug').html('Image loaded: '+$what.width+' x '+$what.height);
console.log($what);
};

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script>
// Random image
var src = "http://placehold.it/300x" + Math.round(Math.random() * (310 - 100) + 100);
</script>
<div id="debug">Image loading:</div>
<img onload="test(this)" id="img" />
<script>
$('#img')[0].src = src;
</script>
&#13;