JavaScript Tutorial/Event/srcElement

Материал из Web эксперт
Перейти к: навигация, поиск

Get event source element name and id

<html>
<head>
<title>A Simple Page</title>
<script language="JavaScript">
<!--
function tagInfo()
{
    var tag;
    tag = "Element name: " + window.event.srcElement.tagName + " ID: " + window.event.srcElement.id;
    document.write(tag);
}
//  -->
</script>
</head>
<body onMouseover="tagInfo()" id="body1">
<h1 id="head1">Heading One</h1>
<p id="para1">Some text</p>
<h2 id="head2">Another heading</h2>
<p id="para2">More text and some <b id="bold1">bold</b> text</p>
<h3 id="head3">Another heading</h3>
<p id="para3">More text and some <i id="italics1">italics</i> text</p>
</body>
</html>


window.event.srcElement.tagName

<html>
<head>
<title>A Simple Page</title>
<script language="JavaScript">
<!--
function tagInfo()
{
    var tag;
    tag = window.event.srcElement.tagName;
    window.status = tag;
}
//  -->
</script>
</head>
<body onMouseover="tagInfo()">
<h1>Heading One</h1>
<P>Some text</p>
<h2>Another heading</h2>
<P>More text and some <b>bold</b> text</p>
<h3>Another heading</h3>
<P>More text and some <i>italics</i> text</p>
</body>
</html>