target ʼþÊôÐÔ

¶¨ÒåºÍÓ÷¨

target ʼþÊôÐÔ¿É·µ»ØÊ¼þµÄÄ¿±ê½Úµã£¨´¥·¢¸ÃʼþµÄ½Úµã£©£¬ÈçÉú³ÉʼþµÄÔªËØ¡¢Îĵµ»ò´°¿Ú¡£

Óï·¨

event.target

ʵÀý

ÏÂÃæµÄÀý×Ó¿É»ñµÃ´¥·¢Ê¼þµÄÔªËØ£º

<html>
<head>

<script type="text/javascript">
function getEventTrigger(event)
  { 
  x=event.target; 
  alert("The id of the triggered element: "
  + x.id);
  }
</script>

</head>
<body >

<p id="p1" onmousedown="getEventTrigger(event)">
Click on this paragraph. An alert box will
show which element triggered the event.</p>

</body>
</html>

TIY

target event
»ñµÃ´¥·¢Ê¼þµÄÔªËØ£¨IE ä¯ÀÀÆ÷²»Ö§³Ö£©¡£
VUE