<script> <!--第一种写法,我更喜欢第一种写法直观一些--> function Person(name){ this.name = name || '默认名字乔丹'; } var person = new Person('詹姆斯01');//this-->person console.log(person.name,'看啥名字')//詹姆斯01,如果不传递参数或者传递的参数为假(比如'',null)---就是默认的乔丹 <!--第2种写法--> func
原文地址:http://blog.csdn.net/sushengmiyan/article/details/50360451 Generated and default property values 生成的和默认的属性值 The database sometimes generates a property value, usually when you insert a row for the first time. 数据库通常会在第一次插入一条数据的时候产生一个属性值. Examples