加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
case05-4 原型对象创建方法案例.html 1.03 KB
一键复制 编辑 原始数据 按行查看 历史
泛舟 提交于 2024-04-15 13:47 . 122
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>原型对象创建方法案例</title>
</head>
<body>
<p id="111"></p>
<p id="222"></p>
<p id="333"></p>
<script>
function Clothes(aaa, bbb) {
this.aaa = aaa;
this.bbb = bbb;
}
Clothes.prototype.Clothes_fun = function () {
return this.aaa + "" + this.bbb
};
var clothes1 = new Clothes("黑色的连衣裙", "小丽穿的衣服");
var clothes2 = new Clothes("黄色的吊带裙", "小美穿的衣服");
document.getElementById("111").innerHTML = clothes1.Clothes_fun();
document.getElementById("222").innerHTML = clothes2.Clothes_fun();
Clothes.prototype = {
Clothes_fun: function () {
return this.bbb + "" + this.aaa
}
}
var clothes1 = new Clothes("黑色的连衣裙", "小丽穿的衣服");
document.getElementById("333").innerHTML = clothes1.Clothes_fun();
</script>
</body>
<html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化