方法:1、用attr()將class屬性的值設為空,語法「$(selector).attr("class","")」;2、用removeAttr()移除class屬性,語法“$(selector).removeAttr("class")”。
本教學操作環境:windows7系統、jquery1.10.2版本、Dell G3電腦。
jquery移除class屬性有兩種方法:
#使用attr()將元素中class屬性的值設為空
語法:$(selector).attr("class","")
使用removeAttr()移除元素中的class屬性
語法:$(selector).removeAttr("class")
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="js/jquery-1.10.2.min.js"></script> <script> $(document).ready(function() { $("button").click(function() { $(".box1").attr("class", ""); $(".box2").removeAttr("class"); }); }); </script> <style> div { border: 1px solid red; margin: 10px; } .box1 { background-color: #FFC0CB; } .box2 { background-color: green; color: white; } </style> </head> <body> <div class="box1">测试文本</div> <div class="box2">测试文本</div> <br> <button>去掉class属性</button> </body> </html>相關影片教學推薦:
以上是jquery怎麼去除class屬性的詳細內容。更多資訊請關注PHP中文網其他相關文章!