jQuery . isArray( obj )

jQuery API の jQuery . isArray( obj ) は、objに指定したオブジェクトが、配列であるかどうかを判定する。配列であれば「true」、配列でなければ「false」を返す。

引数

obj

配列かどうかを判定するオブジェクト。

戻り値

Boolean

booleanType(論理型)。

引数objに指定したオブジェクトが、配列であれば、「true」。

引数objに指定したオブジェクトが、配列でなければ、「false」。

記述例

jQuery( '#sample' ) . text( jQuery . isArray( [] ) );

idが「sample」である要素に、「true」と表示する。

jQuery( '#sample' ) . text( jQuery . isArray( {} ) );

idが「sample」である要素に、「false」と表示する。

実装例(サンプル)

jQuery . isArray( [] ) は、「」となる。

jQuery . isArray( {} ) は、「」となる。

実装例(サンプル)のソースコード

JavaScript

<script type="text/javascript">
<!--
jQuery( function() {
    jQuery( '#jquery-sample-array' ) . text( jQuery . isArray( [] ) );
    jQuery( '#jquery-sample-object' ) . text( jQuery . isArray( {} ) );
} );
// -->
</script>

CSS

<style>
<!--
#jquery-sample {
    margin: 10px;
    padding: 10px 30px;
    background-color: #f0f8ff;
    border: 1px solid gray;
    border-radius: 10px;
}
-->
</style>

HTML

<div id="jquery-sample">
    <p>
        jQuery . isArray( [] ) は、「<span id="jquery-sample-array"></span>」となる。
    </p>
    <p>
        jQuery . isArray( {} ) は、「<span id="jquery-sample-object"></span>」となる。
    </p>
</div>

スポンサード リンク

カテゴリー: API, JavaScript, jQuery, Utilities タグ: パーマリンク