jQuery addClass()
此方法為每個匹配的元素新增指定的樣式類名。
語法結構一:
[JavaScript] 純文字檢視 複製程式碼.addClass(className)
引數解析:
className:為每個匹配元素所要增加的一個或多個樣式名;如果有多個類名,用空格分隔。
jQuery1.0版本新增。
語法結構二:
[JavaScript] 純文字檢視 複製程式碼.addClass(function(index, oldClass))
引數解析:
function:返回需要新增的一個或多個類名的函式。index:可選,當前元素的索引位置(從0開始),oldClass:可選,當前元素原來擁有的類名。函式中的this指向當前元素。
jQuery1.4版本新增。
程式碼例項:
[HTML] 純文字檢視 複製程式碼執行程式碼<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style type="text/css"> div{ height:100px; line-height:100px; width:150px; text-align:center; background-color:#ccc; } .reset{ color:blue; } </style> <script src="http://code.jquery.com/jquery-latest.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("#bt").click(function () { $("div").addClass("reset"); }) }) </script> </head> <body> <div>螞蟻部落</div> <input type="button" id="bt" value="檢視演示" /> </body> </html>
點選按鈕可以為div元素新增指定的樣式類。
[HTML] 純文字檢視 複製程式碼執行程式碼<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style type="text/css"> div{ height:100px; line-height:100px; width:150px; text-align:center; background-color:#ccc; } .reset{ color:blue; } </style> <script src="http://code.jquery.com/jquery-latest.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("#bt").click(function () { $("div").addClass(function () { return "reset"; }) }) }) </script> </head> <body> <div>螞蟻部落</div> <input type="button" id="bt" value="檢視演示" /> </body> </html>
和第一個例項的功能是一樣的,只不過要新增的類是通過函式返回值得到的。
相關文章
- jQuery的addClass,children,showjQuery
- 為什麼jquery的addClass()執行後無效jQuery
- js實現css、addClass、removeClass和toggleClassJSCSSREM
- addClass()新增多個樣式屬性程式碼例項
- 自己實現三個API(getSiblings,addCLass,text)API
- jQuery初探:自制jQueryjQuery
- 我的’jQuery’和jQueryjQuery
- 我的''jQuery''和jQueryjQuery
- 【Jquery】jquery 基本的動畫jQuery動畫
- 【Jquery】jquery 自定義動畫jQuery動畫
- jQuery :not()jQuery
- jQuery not()jQuery
- jQuery is()jQuery
- jQuery()jQuery
- jQuery on()jQuery
- jQueryjQuery
- 小微型庫(5.類名新增addClass和移除removeClass,判斷有無類名hanClass及toggle功能)REM
- JQuery模板外掛-jquery.tmpljQuery
- jquery列印頁面(jquery.jqprint)jQuery
- jQuery入門(三)--- jQuery語法jQuery
- jQuery 3教程(一):jQuery介紹jQuery
- jQuery之使用jQuery.fn.prop()替換jQuery.fn.attr()jQuery
- JQuery基本知識彙總;JQuery常用方法;淺入瞭解JQueryjQuery
- (jQuery) jQuery中的事件與動畫(上)jQuery事件動畫
- jquery.fn.extend與jquery.extendjQuery
- jQuery 1.10.0 和 jQuery 2.0.1 釋出jQuery
- jQuery表單外掛jQuery.formjQueryORM
- jQuery 3教程(二):jQuery選擇器jQuery
- jQuery心得2--jQuery案例剖析1jQuery
- jQuery初探jQuery
- jQuery碎片jQuery
- JQuery動畫jQuery動畫
- 分解jQueryjQuery
- jquery的onjQuery
- jquery事件jQuery事件
- jQuery AjaxjQuery
- jQuery 事件jQuery事件
- jQuery 尺寸jQuery