欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

prototype - javascript 如何实现类似 PHP 的 __set __get

程序员文章站 2022-04-28 18:09:17
...

JS

如何让JS实现类似PHP的 __set __get方法?

html

属性

javascriptprototype

回复内容:

JS

如何让JS实现类似PHP的 __set __get方法?

html

属性

javascriptprototype

估计你是想要这个:

username.__defineGetter__('_tipsTxt', function(){return this.getAttribute('_tipsTxt');});
username.__defineSetter__('_tipsTxt', function(txt){this.setAttribute('_tipsTxt', txt);});

JS属性自带set,get功能啊..=_= 请看DEMO:http://jsfiddle.net/7jfmafkd/
具体请查阅:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/defineProperty