jQuery removeAttr()方法刪除屬性

2020-07-16 10:05:24
在 jQuery 中,我們可以使用 removeAttr() 方法來刪除元素的某個屬性。

語法:

$().removeAttr("屬性名")


舉例:
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <title></title>
    <style>
        .content{color:red;font-weight:bold;}
    </style>
    <script src="js/jquery-1.12.4.min.js"></script>
    <script>
        $(function () {
            $("p").click(function(){
                $(this).removeAttr("class");
            });
        })
    </script>
</head>
<body>
    <p class="content">C語言中文網</p>
</body>
</html>
預覽效果如圖 1 所示。
刪除屬性的效果
圖 1:刪除屬性的效果