JavaScript DHTML/Node Operation/id — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 07:25, 26 мая 2010
"id" Example
<html>
<body>
<script language="JavaScript">
function getID(elem) {
var id = elem.id;
alert("This element"s id attribute is set to \"" + id + "\".");
}
</script>
<p>Click in the following image to display the id attribute"s value.</p>
<img id="myImg"
src="http://www.wbex.ru/style/logo.png"
alt="http://www.wbex.ru"
width="99"
height="78"
onclick="getID(this);">
</body>
</html>