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;


煌大河ゞ
18 声望2 粉丝