tengo esto:variable de clase Acceso JavaScript dentro de una función de clase
function FilterSelect(select, search) {
this.select = select;
this.search = search;
// Get the current list options
this.options = this.select.options;
// Whenever the text of the search box changes, do this
this.search.onkeyup = function() {
// Clear the list
while(this.select.options.length > 0) {
this.select.remove(0);
}
}
}
Dentro de la función onkeyup
quisiera acceder select
, pero sé que no es posible de inmediato. ¿Cuál es la forma apropiada de hacer esto?
Trate de añadir 'this.search.select = this.select' como el tercer línea de tu función. – Blazemonger