jQuery遍历

2018-05-07  本文已影响0人  Z1hgq
<script type="text/javascript">
    $("button:last").click(function() {
        //遍历所有的li
        //修改偶数li内的字体颜色
        $("li").each(function(index, element) {
            if (index % 2) {
                $(this).css('color','blue')
            }
        })
    })
    </script>
上一篇下一篇

猜你喜欢

热点阅读