ネストされたステートメントで「this」を参照したい場合、どの「this」を使用しますか?
上記の意味を示す例を次に示します。
$("input").blur(function(){
var theThis = $(this);
if(!($(".invalid").length > 0)){
//if there's no messages already open
theThis.data("validator").checkValidity();
}else{
//add the message to the next to be displayed
nextToAlert.push(theThis);
//bind an event to the errored field being changed
$(".invalid").on("change", function(){
var me = $(this);
if(!me.hasClass('invalid')){
nextToAlert.pop().checkValidity();
}
});
}
});