class Test {
constructor(Element) {
this.element = Element;
}
static testbind(element_id) {
var element = document.getElementById(element_id);
var text;
element.oninput = function() {
text = element.value;
alert(text);
};
return text;
}
}
testbind()
из конструктора в объекте:var ob = new Test(
{
value: /* тут должна быть функция testbind */
}
);