点击一个对象后,我用来处理一些数据的对象失去了它的所有值,我知道这是因为闭包,但我不知道如何修复它,这是我第一次在 Js 中使用 OOP。
我的代码是这个:
function control_hermes(){
this.url_base="http://domain.com";
this.action="";
this.set_id_to_update;
//private
function set_action(parameter_to_control){
this.action=parameter_to_control;
}
//private
function get_full_url(){
console.log(this.action); //undefined?????, should be the id of the button
console.log(this.url_base); //undefined?????, is on the top!!!
return this.url_base+"?"+this.action;
}
//public
this.execute_instruction=function(id_button){
set_action(id_button);
var url=get_full_url();
}
}//end class
//use class
var manager_hermes=new control_hermes();
jQuery('input').click(function(){
manager_hermes.execute_instruction(jQuery(this).attr("id"));
});