jQuery API の jQuery( object ) は、プレーン・オブジェクトから、jQueryオブジェクトを生成する。
引数
- object
オブジェクト。
戻り値
- jQuery
jQueryオブジェクト。
記述方法
jQuery( オブジェクト )
「オブジェクト」から、jQueryオブジェクトを生成。
記述例
var sampleObject = { key1: 'value1', key2: 'value2' };
var sample = jQuery( sampleObject ) . prop( 'key1' );
var sample = jQuery( sampleObject ) . prop( 'key1' );
変数「sample」には、「value1」が格納される。
実装例(サンプル)
- key1:
- key2:
実装例(サンプル)のソースコード
JavaScript
<script type="text/javascript">
<!--
jQuery( function() {
var sampleObject = { key1: 'value1', key2: 'value2' };
var sampleKey1 = jQuery( sampleObject ) . prop( 'key1' );
var sampleKey2 = jQuery( sampleObject ) . prop( 'key2' );
jQuery( '#jquery-sample-key1' ) . text( sampleKey1 );
jQuery( '#jquery-sample-key2' ) . text( sampleKey2 );
} );
// -->
</script>
<!--
jQuery( function() {
var sampleObject = { key1: 'value1', key2: 'value2' };
var sampleKey1 = jQuery( sampleObject ) . prop( 'key1' );
var sampleKey2 = jQuery( sampleObject ) . prop( 'key2' );
jQuery( '#jquery-sample-key1' ) . text( sampleKey1 );
jQuery( '#jquery-sample-key2' ) . text( sampleKey2 );
} );
// -->
</script>
HTML
<ul>
<li>key1:<span id="jquery-sample-key1"></span></li>
<li>key2:<span id="jquery-sample-key2"></span></li>
</ul>
<li>key1:<span id="jquery-sample-key1"></span></li>
<li>key2:<span id="jquery-sample-key2"></span></li>
</ul>