代码拉取完成,页面将自动刷新
同步操作将从 zy_laoyang/jquery_test 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<!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>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。