رویداد تمرکز relatedTarget
مثال (رویداد تمرکز relatedTarget)
Get the related element of the element that triggered an onfocus event:
function getRelatedElement(event) {
alert(event.relatedTarget.tagName);
}
alert(event.relatedTarget.tagName);
}
خودتان امتحان کنید »
تعریف و کاربرد
The relatedTarget property returns the element related to the element that triggered the focus/blur event.
- For onfocus and onfocusin events, the related element is the element that LOST focus.
- For onblur and onfocusout events, the related element is the element that GOT focus.
This property is read-only.
پشتیبانی مرورگرها
The numbers in the table specify the first browser version that fully supports the property.
متد | |||||
---|---|---|---|---|---|
relatedTarget | بله | 9.0 | 24.0 | بله | بله |
نحوه استفاده
event.relatedTarget
جزئیات تکنیکی
مقدار برگشتی | A reference to the related element, or null if there is no related element |
---|---|
DOM Version: | DOM Level 3 Events |
مرجع کلیه رویدادهای JavaScript
- نوشته شده توسط امیر پهلوان صادق
- بازدید: 4636