Created
April 2, 2012 20:06
-
-
Save h4/2286868 to your computer and use it in GitHub Desktop.
Объект document
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for (i=1; i<=6; i++) { | |
document.write('<h'+i+'>Заголовок '+i.toString().italics()+' уровня</h'+i+'>'); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function createNewDoc() { | |
var newDoc=document.open("text/html", "replace"), | |
txt = "<html><body>Отлично!</body></html>"; | |
newDoc.write(txt); | |
newDoc.close(); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>Коллекция ссылок</title> | |
</head> | |
<body> | |
<a name="first">Первая ссылка</a><br /> | |
<a name="second">Вторая ссылка</a><br /> | |
<a name="third">Третья ссылка</a><br /> | |
<br /> | |
Число ссылок в этом документе: | |
<script type="text/javascript"> | |
document.write(document.anchors.length) | |
</script> | |
<p>Текст первой ссылки: | |
<script type="text/javascript"> | |
document.write(document.anchors[0].innerHTML); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment