这个有很多办法获取到中间的div。下面简单举2种,仅供参考:
<body><div></div>
<div></div>
<div></div>
</body>
<script>
//方法1
$('div:eq(1)').css('width':'100px')
//或者
$('div').eq(1).css('width':'100px')
//方法2
$('div:nth-child(2)').css('width':'100px')
</script>