jQuery.each()ループでは、それthis
は と同等だといつも思っていましたvalueOfElement
。誰かが違いを説明できますか?
例:
$.each(object, function(i, val){
$('body').append('<b>valueOfElement:</b> ' + typeof val + ' - ' +
'<b>this: </b>' + typeof this + '<br/>');
});
結果:
valueOfElement: string - this: object
valueOfElement: boolean - this: object
valueOfElement: object - this: object