共计 220 个字符,预计需要花费 1 分钟才能阅读完成。
window.power2 = {isShow:”};
Object.defineProperty(window.power2, ‘isShow’, {
get: function() {
return this._isShow;
},
set: function (val) {
this._isShow = val;
console.log('?????', val, window.power2.isShow);
}
});
window.power2.isShow=false;
正文完
发表至: javascript
2023-04-25