Con this te estás refiriendo al scope creado por el callback, por lo que es mejor crear una variable, el callback buscará
self en su scope y como no lo encontrará ascenderá al scope padre creado por la función mostrarAlert donde si existe
self.
Código Javascript
:
Ver originalvar MiClase = function () {
this.mensajeParaAlert = "Hola";
};
MiClase.prototype.mostrarAlert = function () {
var self = this;
$(".nodos").each(
function(index,element) {
alert(self.mensajeParaAlert);
});
};