javascript_typeof

来源:互联网 发布:java有什么用处 编辑:程序博客网 时间:2024/06/06 07:11
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"><html><head><title> typeof </title></head><script>var a = 2;alert( typeof a);a = 'abc';alert( typeof a);a = true;alert( typeof a);window.onload = function() {a=document.getElementById("div1");alert(typeof a);a=function(){alert("abc");};alert(typeof a);var b;alert(typeof b);};</script><body><div id="div1"></div></body></html>
<pre name="code" class="html">javascript的数据类型:number,string,boolean,object,function,undefined
javascript中变量的类型是根据变量存放的东西所决定的,没有定义的变量或者是变量没有存放东西都是属于undefined。
                                             
0 0
原创粉丝点击