一号标题
二号标题
三号标题
四号标题
五号标题
- 有序列表1
- 有序列表2
- 无序列表1
- 无序列表2
- 无序列表3
引用
还是引用
sad
(function(){
function Animal() {
this.name = 'Animal';
this.showName = function(){
alert(this.name);
}
}
function Cat() {
this.name = 'Cat';
}
var animal = new Animal();
var cat = new Cat();
animal.showName.call(cat); // 这是
console.log(cat);
})();