|
|||||||||||||||
|
|||||||||||||||
jQuery.type(obj)
version 1.4.3 以降
解説オブジェクトのJavaScriptにおける組み込みクラス名に関連した文字列を返します。 引数
戻り値
例
例1:様々な引数を指定し、結果を確認します。 $.each([{}, true, false, 0, new Date(), 'aaa', [], /abc/, function(){}, null, undefined], function(i, value) { $("#test_result table tr").eq(++i) .append($("<td>").text($.type(value))) .append($("<td>").text(typeof value)); }); テスト結果 (#test_result)
内部実装![]()
内部的には、 ![]() // 組み込みクラス名と名称のマップを生成 jQuery.each("Boolean Number String Function Array Date RegExp Object".split(" "), function(i, name) { class2type[ "[object " + name + "]" ] = name.toLowerCase(); }); ![]() toString = Object.prototype.toString,
![]() // Object.prototype.toString(obj) を呼び出す type: function( obj ) { return obj == null ? String( obj ) : class2type[ toString.call(obj) ] || "object"; }, ![]() |
|
||||||||||||||
© 2007-2011 by いけまさ. All rights Reserved. ![]() ![]() |