jQuery css()方法
使用此方法可以很方便的設定元素的css樣式屬性,下面就介紹一下它的用法。
此方法返回或設定匹配的元素的一個或多個樣式屬性。
設定元素的樣式值:
[HTML] 純文字檢視 複製程式碼<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("#antzone").css("color","red"); }); </script> </head> <body> <div id="antzone">螞蟻部落</div> </body> </html>
上面的程式碼可以將div中的字型顏色設定為紅色。
一次性設定元素多個樣式,程式碼如下:
[HTML] 純文字檢視 複製程式碼<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("#antzone").css({ color:"red", fontSize:"16px", fontWeight:"bold" }); }); </script> </head> <body> <div id="antzone">螞蟻部落</div> </body> </html>
上面的程式碼可以為div一次性設定多個樣式屬性。
獲取樣式屬性值:
[HTML] 純文字檢視 複製程式碼<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style> #antzone{ color:red; font-size:16px; font-weight:bold; } </style> <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("#antzone").text($("#antzone").css("font-size")); }); </script> </head> <body> <div id="antzone">螞蟻部落</div> </body> </html>
上面的程式碼可以獲取div設定的字型大小。
相關文章
- jQuery css() 方法jQueryCSS
- jQuery HTML / CSS 方法jQueryHTMLCSS
- jQuery css()方法用法介紹jQueryCSS
- JQuery中操作Css樣式的方法jQueryCSS
- css中:not()選擇器和jQuery中.not()方法CSSjQuery
- jQuery中css()和attr()方法的區別jQueryCSS
- jQuery css()jQueryCSS
- jQuery如何使用css方法修改單個樣式?jQueryCSS
- jQuery CSS 類jQueryCSS
- jQuery使用css()方法設定元素的display屬性值jQueryCSS
- jquery css()方法設定元素的樣式簡單介紹jQueryCSS
- jQuery使用css()方法改變元素樣式程式碼例項jQueryCSS
- css3中的zoom屬性以及jquery中css()方法操作元素的屬性CSSS3OOMjQuery
- jquery中css()與animate()jQueryCSS
- selenium使用Xpath+CSS+JavaScript+jQuery的定位方法(日常必備)CSSJavaScriptjQuery
- jQuery方法wrapAll()jQuery
- jQuery 事件方法jQuery事件
- jQuery 效果方法jQuery
- jQuery AJAX 方法jQuery
- jQuery Callback 方法jQuery
- jQuery replaceWith()方法jQuery
- jquery filter()方法jQueryFilter
- jQuery position()方法jQuery
- jQuery系列第三章jQuery框架操作CSSjQuery框架CSS
- 使用Jquery和CSS摺疊影象jQueryCSS
- jQuery基礎DOM和CSS操作jQueryCSS
- jQuery 篩選方法jQuery
- jQuery 遍歷方法jQuery
- jQuery 雜項方法jQuery
- jQuery 動畫 - animate() 方法jQuery動畫
- jQuery效果-animate()方法jQuery
- Jquery--工具方法jQuery
- jQuery ajax - serializeArray() 方法jQuery
- jQuery與CSS二級下拉選單jQueryCSS
- css引入方法CSS
- jquery中on方法原理分析jQuery
- jQuery Validate optional()方法jQuery
- JQuery常用方法一覽jQuery