码迷,mamicode.com
首页 > Web开发 > 详细

js中string=“” 和 new string("")的区别

时间:2014-08-28 11:12:59      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:ar   new   c   js   text   as   ip   class   r   

var str="123"    //只是设置变量
str=new String(‘123‘) //设置一个成员

区别
<script>
var str="123";
str.sex=1;
alert(str.sex);//输出未定义,因为不是成员,没有这属性

str=new String(‘123‘);
str.sex=1;
alert(str.sex);//输出1,成员的属性
</script>

js中string=“” 和 new string("")的区别

标签:ar   new   c   js   text   as   ip   class   r   

原文地址:http://www.cnblogs.com/hsjie/p/3940931.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!