标签:style class blog code java http
以下是javascript类型的注意事项:
1 var temp="a string for test"; 2 //下面这句返回"string" http://sosoft.cnblogs.com/ 3 alert( typeof temp); 4 //下面这句返回"false" 5 alert(temp instanceof String); 6 7 //下面这句就回返"true"了 8 var temp2=new String("another new string"); 9 alert(temp2 instanceof String); 10 11 //constructor属性是很好的替代品 12 //下面这句返回"true" 13 alert(temp.constructor==String);
http://www.cnblogs.com/sosoft/
javascript类型注意事项,布布扣,bubuko.com
标签:style class blog code java http
原文地址:http://www.cnblogs.com/sosoft/p/javascriptnote.html