$().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 所示。