因為把瀏覽器從Firefox 換成Chrome之後就
上網找了一下
看到這邊有解決的方式
怕忘記所以在這邊記錄一下
$(function() {
if(navigator.userAgent.indexOf("MSIE") != -1) {
$('img').each(function() {
if($(this).attr('src').indexOf('.png') != -1) {
$(this).css({
'filter': 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src="' +
$(this).attr('src') +
'", sizingMethod="scale");'
});
}
});
}
});
無意中看到,幫上忙了。感謝
回覆刪除不客氣^^
刪除