标签:cal alert 构造函数 logs this common col and div
<script type="text/javascript"> //类式继承(构造函数) var father = function(){ this.age = 52; this.say =function(){ alert(‘hello i am‘+this.name+‘and i am‘+this.age+‘years old‘) } } var child = function(){ this.name = ‘bill‘; father.call(this); } var man = new child(); man.say(); </script>
标签:cal alert 构造函数 logs this common col and div
原文地址:http://www.cnblogs.com/dujunfeng/p/8011986.html