下面用的是jquery方法,请加载jquery插件
<script type="text/javascript"> $(function(){ $(‘#newhouse li:nth-child(3n+2)‘).css(‘margin-right‘, ‘0px‘); }) </script>
主要代码:nth-child(3n+2)
其中N表示倍数,2是偏移的位置数,自己调整即可
时间: 2024-11-13 07:54:04
下面用的是jquery方法,请加载jquery插件
<script type="text/javascript"> $(function(){ $(‘#newhouse li:nth-child(3n+2)‘).css(‘margin-right‘, ‘0px‘); }) </script>
主要代码:nth-child(3n+2)
其中N表示倍数,2是偏移的位置数,自己调整即可