我正在Opencart网站上工作,对于左侧的类别,我需要它们以不同的颜色交替显示。红色,紫色,绿色,蓝色等,然后​​在向菜单添加更多类别时重复。

谁能给我建议最简单的方法吗?

您可以在下面查看网站:
http://getsmarta.co/_ecommerce/easy-leaf/

最佳答案

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
    <script src="Scripts/jquery-1.7.1.min.js" type="text/javascript"></script>
    <script type="text/javascript">
        $(document).ready(function () {
            var color = ['Red', 'Green', 'Yellow'];

            $('ul#test').find('li').each(function (i) {
                $(this).addClass(color[((i + 3) % 3)]);
            });
        });
    </script>
    <style type="text/css">
        .Red
        {
            background-color: Red;
        }

        .Green
        {
            background-color: Green;
        }

        .Yellow
        {
            background-color: Yellow;
        }
    </style>
</head>
<body>
    <ul id="test">
        <li>a</li><li>b</li><li>c</li>
        <li>a</li><li>b</li><li>c</li>
        <li>a</li><li>b</li><li>c</li>
        <li>a</li><li>b</li><li>c</li>
    </ul>
</body>
</html>

关于php - 动态菜单的交替颜色,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10500744/

10-09 15:37