如何使用 jQuery 更改“text-decoration”属性?


若要使用 jQuery 更改文本装饰属性,请使用 jQuery css() 属性。

示例

您可以尝试运行以下代码,将 text-decoration 属性从下划线更改为上划线

在线演示

<!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({"text-decoration": "overline"});
        }
    });    
});
</script>
<style>
p {
   text-decoration: underline;
}
</style>
</head>
<body>
<p>Move the mouse pointer on the text to remove underline and add overline.</p>
</body>
</html>

更新日期:2019 年 12 月 11 日

736 次浏览

开启您的 事业

完成课程获得认证

开始
广告