我想要一个 div 来获得它所环绕的图像的内联样式。
笔在这里:http ://codepen.io/stevenmorgan94/pen/xuEwm
HTML
<div class="box">
<img src="http://placehold.it/250x150" />
</div>
JS
var img = $(".box > img");
$(".box").css({width:img.width(), height:img.height()});
所以jquery获取图像尺寸,将内联样式添加到.box的宽度和高度