js中判断数据类型的方法 typeof
Posted 奋斗的少年WH
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js中判断数据类型的方法 typeof相关的知识,希望对你有一定的参考价值。
<input type="text" onblur="demo(this)"/><br/> <input type="number" onblur="demo(this)" /><br/> <script> function demo(obj){ alert(obj.value+" 数据类型是 "+typeof(obj.value)); alert("str"+" 数据类型是 "+typeof("str")); alert(111+" 数据类型是 "+typeof(111)); } </script>
以上是关于js中判断数据类型的方法 typeof的主要内容,如果未能解决你的问题,请参考以下文章