jQuery UI addClass()方法

  • Post category:jquery

jQuery UI是一个基于jQuery的用户界面插件库,提供了丰富的交互效果和UI组件,其中addClass()方法用于添加一个或多个CSS类到元素上。下面详细讲解addClass()方法的使用攻略:

一、基本语法

addClass()方法的基本语法如下:

$(selector).addClass(class1, class2, ...);

其中,selector是被选中的元素,class1、class2是要添加到元素上的CSS类,可以根据需要添加多个类。如果要添加多个类,则使用空格分隔。

二、参数说明

  • class1, class2:要添加到元素上的CSS类,可以根据需要添加多个类。如果要添加多个类,则使用空格分隔。

三、示例说明

下面是两个使用addClass()方法的示例:

示例一:

该示例中,点击按钮后,给p元素添加一个CSS类,改变文字颜色。

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>jQuery UI addClass()方法示例</title>
    <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
    <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
    <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
    <style>
        .red {color: red;}
    </style>
</head>
<body>
    <p>我是一段文字</p>
    <button id="btn">改变文字颜色</button>

    <script>
        $(document).ready(function(){
            $("#btn").click(function(){
                $("p").addClass("red");
            });
        });
    </script>
</body>
</html>

示例二:

该示例中,用addClass()方法给一个div元素添加多个CSS类,改变元素样式。

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>jQuery UI addClass()方法示例</title>
    <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
    <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
    <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
    <style>
        .red {color: red;}
        .blue {background-color: blue;}
    </style>
</head>
<body>
    <div>我是一个div元素</div>
    <button id="btn">改变元素样式</button>

    <script>
        $(document).ready(function(){
            $("#btn").click(function(){
                $("div").addClass("red blue");
            });
        });
    </script>
</body>
</html>

以上就是关于jquery UI addClass()方法的详细讲解及示例说明,更多内容可以参考jQuery UI官方文档。