摘要: //1.使用typeof..//无需封装直接使用.//可以识别标志类型(null除外)//不可识别具体的对象类型typeof(1);//"number"typeof("");//"string"typeof([]);//"object"typeof({});//"object"typeof(null... 阅读全文
posted @ 2015-10-17 23:24 /null 阅读(525) 评论(0) 推荐(0)