有人可以帮我弄清楚我在做错了什么吗?无论如何,IE8都会为这些图像的宽度返回0。在其他地方工作得很好。
$('#hometown li img').load(function()
{
var imgWidth = parseInt($(this).width());
var percent = (99.99 * (imgWidth / 1600)) + '%';
console.log(imgWidth) // <- Always 0 in ie8
$(this).parent().css({ 'width': percent });
});
答案 0 :(得分:1)
尝试单独将原生onload附加到每个图像,如果complete属性为true则触发onload以避免缓存问题:
$('#hometown li img').each(function() {
this.onload = function() {
var imgWidth = this.width();
var percent = 99.99 * (imgWidth / 1600);
console.log(imgWidth);
this.parentNode.style.width = percent + '%';
}
if(this.complete) this.onload();
});