1 Star 0 Fork 1

wuqi001/js

forked from 少林码僧/js 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
1.基于原型链的继承.html 566 Bytes
一键复制 编辑 原始数据 按行查看 历史
少林码僧 提交于 2016-09-21 22:49 . 基于原型链的继承
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>基于原型链的继承</title>
</head>
<body>
</body>
</html>
<script type="text/javascript" charset="utf-8">
function Parent(){
this.pv = 'parent';
}
Parent.prototype.pp = 'ok';
Parent.prototype.showParentValue=function(){
alert(this.pv);
}
function Child(){
this.cv = 'child';
}
Child.prototype = new Parent();
Child.prototype.showChildValue = function(){
alert(this.cv);
}
var c = new Child();
c.showChildValue();
c.showParentValue();
alert(c.pp);
</script>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/wuqi001/js.git
git@gitee.com:wuqi001/js.git
wuqi001
js
js
master

搜索帮助