属性 (Attributes)
一覧
概要 | 構文 | 戻り値 | 別カテゴリ |
---|---|---|---|
クラス追加 | .addClass( className ) 1.0 .addClass( function ) 1.4 | jQuery | CSS Manipulation |
属性値 取得・設定 | .attr( attributeName ) 1.0 | String | |
.attr( attributeName, value ) 1.0 .attr( attributes ) 1.0 .attr( attributeName, function ) 1.1 | jQuery | ||
クラス有無 | .hasClass( className ) 1.2 | Boolean | CSS Manipulation |
要素内容 取得・設定 (HTMLコンテンツ) | .html() 1.0 | String | Manipulation |
.html( htmlString ) 1.0 .html( function ) 1.4 | jQuery | ||
プロパティ値 取得・設定 | .prop( propertyName ) 1.6 | Anything | |
.prop( propertyName, value ) 1.6 .prop( properties ) 1.6 .prop( propertyName, function ) 1.6 | jQuery | ||
属性削除 | .removeAttr( attributeName ) 1.0 | jQuery | |
クラス削除 | .removeClass( [className ] ) 1.0 .removeClass( function ) 1.4 | jQuery | CSS Manipulation |
プロパティ削除 | .removeProp( propertyName ) 1.6 | jQuery | |
クラス 追加/削除 切替 | .toggleClass( className ) 1.0 .toggleClass( className, state ) 1.3 .toggleClass( function [, state ] ) 1.4 | jQuery | CSS Manipulation |
.toggleClass( [state ] ) 1.43.0 | jQuery | ||
要素値 取得・設定 | .val() 1.0 | String Number Array | |
.val( value ) 1.0 .val( function ) 1.4 | jQuery |