移除style樣式的兩種方法:1.利用removeAttr()函數,可以移除style屬性設定的樣式,語法「$(selector).removeAttr("style");」。 2.利用empty()函數,用來清空style標籤的內容,可移除style標籤樣式,語法「$("style").empty();」。
本教學操作環境:windows7系統、jquery3.6.1版本、Dell G3電腦。
在HTML中,style樣式分成兩種情況:
1、style屬性包含的樣式
style屬性是HTML核心屬性,用於為元素指定內嵌樣式(inline style)。
style屬性將覆寫其他全域樣式,例如在
2、style標籤所包含的樣式
style標籤定義 HTML 文件的樣式資訊。
在 style元素中,您可以規定在瀏覽器中如何呈現 HTML 文件。
針對不同情況,jquery有不同的移除方法。
1、利用jquery removeAttr()方法移除style屬性
#removeAttr() 方法用於從被選元素中移除屬性。
語法:
$(selector).removeAttr(attribute)
attribute:必要。規定從指定元素中移除的屬性。
範例:移除第一個p 元素的style屬性
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <script src="js/jquery-3.6.1.min.js"></script> <script type="text/javascript"> $(document).ready(function() { $("button").click(function() { $("p:first").removeAttr("style"); }); }); </script> </head> <body> <h1>这是一个大标题</h1> <p style="font-size: 120%;color: blue;background-color: yellow;">这是一个段落。</p> <p style="font-size: 120%;color: blue;background-color: yellow;">这是另一个段落。</p> <button>移除第一个 p 元素的style属性</button> </body> </html>
#2、利用jquery empty()方法來清空style標籤的內容
empty() 方法移除被選元素的所有子節點和內容,但不會刪除被選取元素。
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <script src="js/jquery-3.6.1.min.js"></script> <script type="text/javascript"> $(document).ready(function() { $("button").click(function() { $("style").empty(); }); }); </script> <style> h1{ color: coral; } p{ font-size: 120%; color: blue; background-color: yellow; } </style> </head> <body> <h1>这是一个大标题</h1> <p>这是一个段落。</p> <p>这是另一个段落。</p> <button>清空style标签样式</button> </body> </html>
【推薦學習:jQuery影片教學、web前端開發影片】
以上是jquery怎麼移除style部分樣式的詳細內容。更多資訊請關注PHP中文網其他相關文章!