?
Dieses Dokument verwendet PHP-Handbuch für chinesische Websites Freigeben
在事件中涉及的其它任何DOM元素。
對(duì)于 mouseout 事件,它指向被進(jìn)入的元素;對(duì)于 mousein 事件,它指向被離開(kāi)的元素。
On mouseout of anchors, alert the element type being entered.
$("a").mouseout(function(event) { alert(event.relatedTarget.nodeName); // "DIV" });