jquery中可利用attr()方法來修改style屬性,方法設定被選取元素的屬性值,語法「$(selector).attr("style","行內樣式程式碼")」或“$(selector).attr({"style":"樣式代碼"})”。
本教學操作環境:windows7系統、jquery1.10.2版本、Dell G3電腦。
在jquery中,可以利用attr()方法來修改元素的style屬性。
attr() 方法可設定被選元素的屬性值。根據該方法不同的參數,其工作方式也有所差異。
語法:
$(selector).attr(attribute,value) $(selector).attr({attribute:value})
範例:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js"> </script> <script> $(document).ready(function(){ $("button").click(function(){ // $("div").attr({"style":"border: 5px solid paleturquoise;"}); $("div").attr("style","border: 5px solid paleturquoise;width: 200px;"); }); }); </script> </head> <body> <div style="border: 1px solid red;">hello</div> <br> <button>点击按钮,修改style属性</button> </body> </html>
#相關影片教學推薦:jQuery教學(影片)
以上是jquery怎麼修改style屬性的詳細內容。更多資訊請關注PHP中文網其他相關文章!