1 Star 0 Fork 25

duan_yining/jquery_test

forked from zy_laoyang/jquery_test 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
jso2.html 1.81 KB
一键复制 编辑 原始数据 按行查看 历史
zy_laoyang 提交于 2020-04-21 09:32 . js面向对象
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script>
/*
访问器属性不能直接定义,必须使用Object.defineProperty()来定义。
*/
// var book = {
// _year: 2018, // 带下划线的属性表示只能通过对象方法访问的属性
// edition: 1
// };
// alert(book._year);
// Object.defineProperty(book, 'year', {
// get: function () {
// return this._year;
// },
// set: function (newValue) {
// if (newValue > 2018) {
// this._year = newValue;
// this.edition += newValue - 2018;
// }
// }
// });
//
// book.year = 2019;
// console.log(book.edition); // 为 2
//////////////////////////////////////////////////////////////////////////////////
//定义多个属性
var book = {
edition:1
};
Object.defineProperties(book, {
// 带下划线的属性表示只能通过对象方法访问的属性
_year: {
value: 2018
},
// edition: {
// Writable:true,
// value: 1
// },
year: {
get: function () {
return this._year;
},
set: function (newValue) {
if (newValue > 2018) {
this._year = newValue;
this.edition += newValue - 2018;
}
}
}
});
console.log("book.year:"+book.year)
book.year = 2020;
console.log(book.edition); // 为 2
</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