我正在尝试将旧的非严格函数转换为与严格版本和Jquery 3.3兼容的版本
旧功能允许我按顺序回忆各种功能,获得单个最终结果,在新的功能中我无法在多次尝试后重现。
旧功能是:
var num_modali = 0;
_modale = function(){
this.livello_m = num_modali;
this.percorso = function(){
return (this.livello_m > 0) ? $('body').find('#modale_' + this.livello_m).find(modale_content) : $('body');
};
this.listarecord = function(){
return lista_record = (this.livello_m > 0) ? '#lista_records_modale' : '#lista_records';
};
this._pre = function(){
this.livello_m--;
return this;
};
this._go = function(){
return this.percorso();
};
this._getlivello = function(){
var livello = (this.livello_m > 0) ? this.livello_m : 0;
return livello;
};
this._chiudi = function(where){
$destroy_modale();
return this;
};
this._delete = function(what){
this.percorso().find(this.listarecord()).find(what).remove(what);
return this;
};
if(this instanceof _modale){
return this;
}else{
return new _modale();
}
};
有了这个,我也可以用这种方式打电话:_modale()._pre()._pre()._go();
全局变量num_modali
由处理模态的第二个函数使用
新功能:
var _modale = {
livello_m: num_modali,
percorso: function(){
return (this.livello_m > 0) ? 'body #modale_' + this.livello_m + ' .modale_content' : 'body';
},
listaRecord: function(){
return (num_modali > 0) ? '#lista_records_modale' : '#lista_records';
},
pre: function(){
return this.livello_m - 1;
},
go: function(){
return this.percorso();
},
getlivello: function(){
return (this.livello_m > 0) ? this.livello_m : 0;
},
chiudi: function(){
modale.destroyModale();
//return this;
},
_delete: function(what){
_modale.percorso().find(_modale.listaRecord()).find(what).remove(what);
}
};
如果我尝试执行相同的顺序调用:_modale.pre().pre().go();
返回_modale.pre(...).pre is not a function
如何根据严格指令更改功能并获得相同的操作?
您需要在函数中使用return this
才能将其链接起来:
pre: function(){
this.livello_m--;
return this; // Here
}