愚僧

赢与输的差别通常是--不放弃

BlogJava 首页 新随笔 联系 聚合 管理
  23 Posts :: 0 Stories :: 2 Comments :: 0 Trackbacks
typeof只能够确定六种数据类型
1. number
2. boolean
3. string
4. function
5. object
6. undefined
语法:
1. typeof varName
2. typeof(varName)
使用: 
var i = 1;
if(typeof i == "number"){
    alert("i type is number.");
}
instanceof可以判断对象的具体类型
语法:
varName instanceof ObjectType;
使用:
var obj = new Date();
var isDate = obj instanceof Date;
alert(isDate);
posted on 2013-02-21 15:42 ywm 阅读(137) 评论(0)  编辑  收藏 所属分类: html & css & js

只有注册用户登录后才能发表评论。


网站导航: