jQuery API の attr( attributeName, value ) は、「attributeName」に指定した属性の値を、「value」に指定した属性値に設定するメソッド。
記述方法
jQuery( セレクター ) . attr( 属性名, 属性値 )
「セレクター」に指定した要素の、「属性名」に指定した属性の値を、「属性値」に指定した値に設定。
記述例
jQuery( 'input' ) . attr( 'disabled', 'disabled' )
input要素の、disabled属性を、disabledに設定。
実装例(サンプル)
入力欄:
input:
textarea:
実装例(サンプル)の動作について
「有効」を選択すると、テキスト入力欄とテキストエリアを、有効にし、入力できるようにする。
「無効」を選択すると、テキスト入力欄とテキストエリアを、無効にし、入力できないようにする。
実装例(サンプル)のソースコード
JavaScript
<script type="text/javascript">
<!--
jQuery( function() {
jQuery( 'input[name=jquerySampleRadio]' ) . change( function () {
jQuery( 'input[name=jquerySampleRadio]' ) . closest( 'label' ) . css( {
backgroundColor: 'yellow',
} );
jQuery( 'input:checked[name=jquerySampleRadio]' ) . closest( 'label' ) . css( {
backgroundColor: 'pink',
} );
if( jQuery( 'input[name=jquerySampleRadio]:eq(1)' ) . is( ':checked' ) ) {
jQuery( '.jquery-smaple-enable-disable' ) . attr( 'disabled', 'disabled' );
} else {
jQuery( '.jquery-smaple-enable-disable' ) . removeAttr( 'disabled' );
}
} ) . change();
} );
// -->
</script>
<!--
jQuery( function() {
jQuery( 'input[name=jquerySampleRadio]' ) . change( function () {
jQuery( 'input[name=jquerySampleRadio]' ) . closest( 'label' ) . css( {
backgroundColor: 'yellow',
} );
jQuery( 'input:checked[name=jquerySampleRadio]' ) . closest( 'label' ) . css( {
backgroundColor: 'pink',
} );
if( jQuery( 'input[name=jquerySampleRadio]:eq(1)' ) . is( ':checked' ) ) {
jQuery( '.jquery-smaple-enable-disable' ) . attr( 'disabled', 'disabled' );
} else {
jQuery( '.jquery-smaple-enable-disable' ) . removeAttr( 'disabled' );
}
} ) . change();
} );
// -->
</script>
CSS
<style>
<!--
#jquery-smaple-form input {
margin: 5px;
}
#jquery-smaple-form label {
margin: 5px 10px;
background-color: yellow;
font-size: 15px;
color: #303030;
}
-->
</style>
<!--
#jquery-smaple-form input {
margin: 5px;
}
#jquery-smaple-form label {
margin: 5px 10px;
background-color: yellow;
font-size: 15px;
color: #303030;
}
-->
</style>
HTML
<div id="jquery-smaple-form">
<p>入力欄:
<label>
<input type="radio" name="jquerySampleRadio" checked="checked" />
有効
</label>
<label>
<input type="radio" name="jquerySampleRadio" />
無効
</label>
</p>
<p>
input:<input type="text" class="jquery-smaple-enable-disable" />
</p>
<p>
textarea:<textarea class="jquery-smaple-enable-disable"></textarea>
</p>
</div>
<p>入力欄:
<label>
<input type="radio" name="jquerySampleRadio" checked="checked" />
有効
</label>
<label>
<input type="radio" name="jquerySampleRadio" />
無効
</label>
</p>
<p>
input:<input type="text" class="jquery-smaple-enable-disable" />
</p>
<p>
textarea:<textarea class="jquery-smaple-enable-disable"></textarea>
</p>
</div>