class Button{
constructor(number_class){
this.number_class = number_class;
this.class = document.querySelector(this.number_class);
this.class.onclick = function(){
document.write("ghb");
}
}
}
var bt1 = new Button("bt1");
<input type="button" value="1" class="bt1">