1 Star 0 Fork 25

duan_yining/jquery_test

forked from zy_laoyang/jquery_test 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
jso3.html 1.48 KB
一键复制 编辑 原始数据 按行查看 历史
zy_laoyang 提交于 2020-04-20 09:28 . js面向对象
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script>
//工厂模式
/*
function createPerson(name, age) {
var o = new Object();
o.name = name;
o.age = age;
o.sayName = function () {
alert(this.name);
};
return o;
}
var p=createPerson("abc",12);
*/
//alert(p.name+"-->"+p.age);
//构造模式
function Person(name, age) {
this.name = name;
this.age = age;
this.sayName = function () {
alert(this.name);
};
//return this;
}
var p=new Person("laoyang",18);
console.log(p.constructor == Person);
console.log(p instanceof Object); // true
console.log(p instanceof Person); // true
function see() {
// return undefined;
}
console.log(see())
// p.sayName()
Person('Morty', 14); // 添加到window全局变量对象上,变量提升
console.log(window.age)
window.sayName(); // Morty
// 在另一个对象的作用域中调用
var o = {};
Person.call(o, 'Jerry', 35);//call(在哪个对象的作用域下,(参数,参数))this.指向了o
o.sayName(); // Jerry
alert(o.age);
</script>
</head>
<body>
使用工厂模式和构造模式创建对象
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/duan_yining/jquery_test.git
git@gitee.com:duan_yining/jquery_test.git
duan_yining
jquery_test
jquery_test
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385