jQuery实现获取及设置CSS样式操作详解

addClass():向被选元素添加一个或多个类

removeClass():从被选元素删除一个或多个类

toggleClass():对被选元素进行添加/删除类的切换操作

css():设置或返回被选元素的一个或多个样式属性

样式表实例:

.important{ font-weight:bold; font-size:xx-large; } .blue{ color:blue; }

addClass()

<!DOCTYPE html> <html> <head> <script src="https://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $("h1,h2,p").addClass("blue"); $("div").addClass("important"); }); }); </script> <style type="text/css"> .important{ font-weight:bold; font-size:xx-large; } .blue{ color:blue; } </style> </head> <body> <h1>she is gone</h1> <h2>no say anymore</h2> <p>but i miss you</p> <div>can you come back</div> </br> <button>addClass</button> </body> </html>

运行效果:

jQuery实现获取及设置CSS样式操作详解

可以在addClass()方法中规定多个类:

$("button").click(function(){ $("#div1").addClass("important blue"); });

removeClass()

<!DOCTYPE html> <html> <head> <script src="https://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $("h1,h2,p").removeClass("blue"); }); }); </script> <style type="text/css"> .important{ font-weight:bold; font-size:xx-large; } .blue{ color:blue; } </style> </head> <body> <h1>is she ?</h1> <h2>i do not know</h2> <p>queit</p> <br> <button>removeClass</button> </body> </html>

运行结果:

jQuery实现获取及设置CSS样式操作详解

toggleClass()

<!DOCTYPE html> <html> <head> <script src="https://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $("h1,h2,p").toggleClass("blue"); }); }); </script> <style type="text/css"> .blue{ color:blue; } </style> </head> <body> <h1>who are you</h1> <h2> i five thank you</h2> <p>goodbye</p> <button>toggleClass</button> </body> </html>

运行结果:

jQuery实现获取及设置CSS样式操作详解

css()

返回CSS属性

css("propertyname")

<!DOCTYPE html> <html> <head> <script src="https://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ alert("Background color = " + $("#p2").css("background-color")); }); }); </script> </head> <body> <h2>我心在南朝</h2> <p id=p1>田野上</p> <p id=p2>红花盛开</p> <p id=p3>玲珑剔透</p> <button>css()</button> </body> </html>

运行结果:

jQuery实现获取及设置CSS样式操作详解

设置CSS属性

css("propertyname","value");

<!DOCTYPE html> <html> <head> <script src="https://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $("p").css("background-color","yellow"); }); }); </script> </head> <body> <h2>我心在南朝</h2> <p>田野上</p> <p>红彤彤的花儿</p> <p>玲珑剔透</p> <p>我心在南朝</p> <button>设置CSS属性</button> </body> </html>

运行结果:

jQuery实现获取及设置CSS样式操作详解

设置多个CSS属性

$("p").css({"background-color":"yellow","font-size":"200%"});

jQuery——尺寸

width():设置或返回元素的宽度(不包括内边距、边框或外边距)

height():设置或返回元素的高度(不包括内边距、边框或外边距)

innerWidth()方法返回元素的宽度(包括内边距)

innerHeight()方法返回元素的高度(包括内边距)

outerWidth()方法返回元素的宽度(包括内边距和边框)

outerHeight()方法返回元素的高度(包括内边距和边框)

outerWidth(true)方法返回元素的宽度(包括内边距、边框、外边距)

outerHeight(true)方法返回元素的高度(包括内边距、边框、外边距)

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/69d704c14ed7109930fea328600204d9.html