jQueryで変数のデータ型を調べるサンプル

2021年11月24日

書式
$.type(変数名)=="null"
$.type(変数名)=="undefined"
$.type(変数名)=="boolean"

使用例

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>

const cft = false;
//文字列のbooleanか判定
if ($.type(cft)=="boolean") {
      alert($.type(cft)); 
}

const cf = null;
//文字列のnullか判定
if ($.type(cf)=="null") {
      alert($.type(cf));
}

let cftC;
//文字列のundefinedか判定
if ($.type(cftC)=="undefined") {
      alert($.type(cftC)); 
}

</script>

実行結果
boolean
null
undefined

jQuery

Posted by arkgame