CSS方法:
.img {max-width:600px;width:600px;width:expression(document.body.clientWidth>600?"600px":"auto");overflow:hidden;}
JQuery方法:
$("img").each(function(){ if($(this).width() > $(this).parent().width()) { $(this).width("100%"); }});
博客园 © 2004-2025 浙公网安备 33010602011771号 浙ICP备2021040463号-3