如何用 jQuery 更改文本颜色?


使用 jQuery css() 方法更改文本颜色。color css 属性用于更改文本颜色。

示例

你可以尝试运行以下代码,了解如何用 jQuery 更改文本颜色 −

在线演示

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("p").on({
        mouseenter: function(){
            $(this).css("color", "red");
        }
    });    
});
</script>
</head>
<body>
<p>Move the mouse pointer on the text to change the text color.</p>
</body>
</html>

更新时间: 2020-02-17

12K+ 浏览量

开启你的 职业

完成本课程以获得认证

开始
广告