CSSメソッド
.hasClass(calssName)は、要素に特定のクラスが含まれているかどうかをチェックし、true/falseを返します
$( "#mydiv" ).hasClass( "foo" )
.addClass(className) / .addClass(function(index,currentClass))は、要素にクラスを追加します元のクラスの上書きは追加され、重複はチェックされません
$( "p" ).addClass( "myClass yourClass" ); $( "ul li" ).addClass(function( index ) { return "item-" + index; });
removeClass([className]) / ,removeClass(function(index,class)) 要素の単一/複数/すべてのクラスを削除します
$( "p" ).removeClass( "myClass yourClass" ); $( "li:last" ).removeClass(function() { return $( this ).prev().attr( "class" ); });
.toggleClass (className) /.toggleClass(className,switch) / .toggleClass([switch]) / .toggleClass( function(index, class, switch) [, switch ] ) toggle はスイッチを意味し、メソッドはスイッチに使用され、スイッチはbool型の値、例を見れば分かります
<div class="tumble">Some text.</div>
1回目の実行
$( "div.tumble" ).toggleClass( "bounce" ) <div class="tumble bounce">Some text.</div>
2回目の実行
$( "div.tumble" ).toggleClass( "bounce" ) <div class="tumble">Some text.</div>
$( "#foo" ).toggleClass( className, addOrRemove );// 两种写法意思一样if ( addOrRemove ) { $( "#foo" ).addClass( className ); } else { $( "#foo" ).removeClass( className ); }
$( "div.foo" ).toggleClass(function() { if ( $( this ).parent().is( ".bar" ) ) { return "happy"; } else { return "sad"; } });
.css(propertyName) / .css(propertyNames) 要素スタイルの特定のプロパティの値を取得
var color = $( this ).css( "background-color" ); var styleProps = $( this ).css([ "width", "height", "color", "background-color" ]);
.css(propertyName, value) / .css( propertyName, function(index, value) ) / .css(propertiesJson ) 要素 style
$( "div.example" ).css( "width", function( index ) { return index * 50; }); $( this ).css( "width", "+=200" ); $( this ).css( "background-color", "yellow" ); $( this ).css({ "background-color": "yellow", "font-weight": "bolder" });
Event メソッド
の特定のプロパティの値を設定します。 bind(eventType [,eventData],handler(eventObject) ) Bind定義されたイベント処理プログラム、これはよく使われますが、あまり説明はありません
$( "#foo" ).bind( "click", function() { alert( "User clicked on 'foo.'" ); });
.delegate( selector,eventType,handler(eventObject) ) 公式の説明を見てみましょう
ルート要素の特定のセットに基づいて、現在または将来、セレクターに一致するすべての要素の 1 つ以上のイベントにハンドラーをアタッチします。
$( "table" ).on( "click", "td", function() {//这样把td的click事件处理程序绑在table上 $( this ).toggleClass( "chosen" ); });
.on( events [, selector ] [, data ], handler( eventObject) ) 1.7 以降で推奨、bind、live、delegate を置き換えます
$( "#dataTable tbody" ).on( "click", "tr", function() { alert( $( this ).text() ); });
.trigger(eventType [, extraParameters ] ) JavaScriptトリガー要素バインディングevent
$( "#foo" ).trigger( "click" );
.toggle( [duration ] [, complete ] ) / .toggle(オプション ) 要素を表示または非表示にする
$( ".target" ).toggle(); $( "#clickme" ).click(function() { $( "#book" ).toggle( "slow", function() { // Animation complete. }); });
以上がjqueryのcssメソッドとイベントメソッドの使い方を詳しく解説の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。