en.javascript.info/2-ui/1-document/6-basic-dom-node-properties/3-find-next-element/source.view/index.html
Ilya Kantor 87bf53d076 update
2014-11-16 01:40:20 +03:00

20 lines
No EOL
360 B
HTML
Executable file

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
</head>
<body>
<div>Первый</div>
<!-- комментарий... -->
<p>Второй</p>
<script>
function getNextElement(elem) { /* ваш код */ }
alert(getNextElement(document.body.children[0]).tagName); // P
alert(getNextElement(document.body.lastChild)); // null
</script>
</body>
</html>