مثال
event.currentTarget هو عادة يساوي this :
$("h1, h2, p").click(function(event){
alert(event.currentTarget ===
this);
});
انها محاولة لنفسك » تعريف واستخدام
و event.currentTarget الممتلكات هي عنصر DOM الحالي ضمن المرحلة محتدما الحدث، وعادة مساوية ل this .
بناء الجملة
event.currentTarget
Parameter | Description |
---|---|
event | Required. The event parameter comes from the event binding function |
انها محاولة لنفسك - أمثلة
عودة إلى المحتوى من العناصر
باستخدام event.currentTarget.innerHTML للعودة محتوى العناصر.