html code: <script src=“foo.js"></script>
js code:
function People(){
}
People.prototype.say = function(){
alert("hello");
}
function Student(){
}
Student.prototype = new People();
var s = new Student();
s.say();
时间: 2024-11-10 00:08:05
html code: <script src=“foo.js"></script>
js code:
function People(){
}
People.prototype.say = function(){
alert("hello");
}
function Student(){
}
Student.prototype = new People();
var s = new Student();
s.say();