代码在这里:
Father.js
(function(){
function father(){
};
father.prototype.init = function(){
console.log('father');
}
})()
Child.js
(function(){
function child(){
}
child.prototype.init = function(){
console.log('child');
}
var father = new father();
})()
我有 2 个问题:如何在脚本标记或我创建的任何第三个 javascript 文件之间调用父对象或子对象?第二:如何在子类中调用父对象。我是 JS 新手,在 javascript 中遇到了一些 OOP 问题。非常感谢您的帮助