0
我希望它縮放td img.standingslogo
的所有實例的所有圖像,但它不能正常工作jQuery的調整圖像大小不工作
的jsfiddle - https://jsfiddle.net/ze5ebnw7/13/
$(window).load(function(){
image = []
$('td img.standingslogo').each(function() {
imageWidth = $(this).width();
image[$(this).index()] = imageWidth;
});
$(window).resize(function() {
$('td img.standingslogo').hide();
$('td img.standingslogo').each(function() {
tdWidth = $(this).parent().width();
imgWidth = image[$(this).index()];
if (imgWidth>=tdWidth) {$(this).css({width:tdWidth});} else {$(this).css({width:imgWidth});}
$(this).show();
});
}).resize();
});
從這個jsfiddle你不清楚你遇到了什麼問題。發生了什麼,你期望發生什麼? – andlabs