Objeto JS instanciable con jQuery


/ Published in: JavaScript
Save to your folder(s)

Con este esquema puedes crear objetos instanciables en Javascript usando jQuery.
Su uso es muy simple, sólo debes copiar el siguiente código y cambiar las variables que están en mayúsculas.


Copy this code and paste it in your HTML
  1. // Helper. Sólo usarlo una vez. Esto resuelve varios problemas con objetos en js.
  2. if ( typeof Object.create !== 'function' ) {
  3. Object.create = function( obj ) {
  4. function F() {};
  5. F.prototype = obj;
  6. return new F();
  7. };
  8. }
  9.  
  10. // Esquema para objetos javascript.
  11. (function(){
  12. var OBJ_NAME = {
  13. props: {},
  14. init: function(props){
  15. this.props = $.extend({}, this.props, props);
  16. return this;
  17. }
  18. };
  19.  
  20. // Para instanciar y ejecutar constructor.
  21. new_OBJ_NAME = function(props){
  22. var REL_OBJ_NAME = Object.create(OBJ_NAME);
  23. return REL_OBJ_NAME.init(props);
  24. };
  25. })();
  26.  
  27. // Uso.
  28. props = {/* Las propiedades*/};
  29. obj = new_OBJ_NAME(props);

URL: http://porquero.blogspot.com/2013/02/esquema-para-crear-objetos-instanciable.html

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.