<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
		<id>http://wbex.ru/index.php?action=history&amp;feed=atom&amp;title=JavaScript_Tutorial%2FDocument%2FIntroduction</id>
		<title>JavaScript Tutorial/Document/Introduction - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://wbex.ru/index.php?action=history&amp;feed=atom&amp;title=JavaScript_Tutorial%2FDocument%2FIntroduction"/>
		<link rel="alternate" type="text/html" href="http://wbex.ru/index.php?title=JavaScript_Tutorial/Document/Introduction&amp;action=history"/>
		<updated>2026-04-04T22:40:38Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://wbex.ru/index.php?title=JavaScript_Tutorial/Document/Introduction&amp;diff=8909&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://wbex.ru/index.php?title=JavaScript_Tutorial/Document/Introduction&amp;diff=8909&amp;oldid=prev"/>
				<updated>2010-05-26T08:24:38Z</updated>
		
		<summary type="html">&lt;p&gt;1 версия&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style=&quot;vertical-align: top;&quot; lang=&quot;ru&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Предыдущая&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Версия 08:24, 26 мая 2010&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;text-align: center;&quot; lang=&quot;ru&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(нет различий)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	<entry>
		<id>http://wbex.ru/index.php?title=JavaScript_Tutorial/Document/Introduction&amp;diff=8908&amp;oldid=prev</id>
		<title> в 18:52, 25 мая 2010</title>
		<link rel="alternate" type="text/html" href="http://wbex.ru/index.php?title=JavaScript_Tutorial/Document/Introduction&amp;diff=8908&amp;oldid=prev"/>
				<updated>2010-05-25T18:52:56Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Associative object arrays of document==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;HTML&amp;gt;&lt;br /&gt;
&amp;lt;HEAD&amp;gt;&lt;br /&gt;
   &amp;lt;TITLE&amp;gt;Associative object arrays&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
&amp;lt;SCRIPT&amp;gt;&lt;br /&gt;
function showProperties (theObject){&lt;br /&gt;
   for (var i in theObject) {&lt;br /&gt;
      if (theObject[i] != null) {&lt;br /&gt;
          document.write(i + &amp;quot; : &amp;quot; + theObject[i] + &amp;quot;&amp;lt;br&amp;gt;&amp;quot;);&lt;br /&gt;
           &lt;br /&gt;
      }&lt;br /&gt;
      else {&lt;br /&gt;
         document.write(i + &amp;quot;&amp;lt;br&amp;gt;&amp;quot;);&lt;br /&gt;
      }&lt;br /&gt;
   }&lt;br /&gt;
   return;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/SCRIPT&amp;gt;&lt;br /&gt;
&amp;lt;/HEAD&amp;gt;&lt;br /&gt;
&amp;lt;BODY&amp;gt;&lt;br /&gt;
&amp;lt;SCRIPT&amp;gt;&lt;br /&gt;
showProperties(window.document);&lt;br /&gt;
&amp;lt;/SCRIPT&amp;gt;&lt;br /&gt;
&amp;lt;/HTML&amp;gt;&amp;lt;/source&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
== Document==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;The Document object represents a Web page that is displayed in a browser window, frame, or layer.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;An instance is created with each document that is loaded by the browser.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Properties, Methods, and Event Handlers Associated with the Document Object are listed in the following table.&amp;lt;/p&amp;gt;&lt;br /&gt;
alinkColor&lt;br /&gt;
Color of activated link&lt;br /&gt;
all&lt;br /&gt;
Array of all HTML tags in the document&lt;br /&gt;
anchors&lt;br /&gt;
Array of Anchor objects&lt;br /&gt;
applets&lt;br /&gt;
Array of Applet objects&lt;br /&gt;
bgcolor&lt;br /&gt;
Background color of document&lt;br /&gt;
classes&lt;br /&gt;
Style sheet classes array&lt;br /&gt;
cookie&lt;br /&gt;
Cookie associated with document&lt;br /&gt;
domain&lt;br /&gt;
Domain of document&lt;br /&gt;
embeds&lt;br /&gt;
Array of embedded objects&lt;br /&gt;
fgcolor&lt;br /&gt;
Color of text in document&lt;br /&gt;
forms&lt;br /&gt;
Array of Form objects&lt;br /&gt;
ids&lt;br /&gt;
Style sheet IDs array&lt;br /&gt;
images&lt;br /&gt;
Array of Image objects&lt;br /&gt;
lastModified&lt;br /&gt;
Date when document was last modified&lt;br /&gt;
layers&lt;br /&gt;
Array of Layer objects&lt;br /&gt;
linkColor&lt;br /&gt;
Color of links&lt;br /&gt;
links&lt;br /&gt;
Array of Link objects&lt;br /&gt;
plugins&lt;br /&gt;
Array of embedded objects&lt;br /&gt;
referrer&lt;br /&gt;
URL of document to which the current document was linked&lt;br /&gt;
tags&lt;br /&gt;
Style sheet tag array&lt;br /&gt;
title&lt;br /&gt;
Title of document&lt;br /&gt;
URL&lt;br /&gt;
URL of current document&lt;br /&gt;
vlinkColor&lt;br /&gt;
Color of visited links&lt;br /&gt;
captureEvents()&lt;br /&gt;
Captures events to be handled by document&lt;br /&gt;
close()&lt;br /&gt;
Closes output stream to document&lt;br /&gt;
getSelection()&lt;br /&gt;
Returns the selected text&lt;br /&gt;
open()&lt;br /&gt;
Opens output stream to document&lt;br /&gt;
releaseEvents()&lt;br /&gt;
Releases events captured by document&lt;br /&gt;
routeEvent()&lt;br /&gt;
Routes captured events to other objects&lt;br /&gt;
write()&lt;br /&gt;
Appends text to document&lt;br /&gt;
writeln()&lt;br /&gt;
Appends text and a newline character to document&lt;br /&gt;
onClick&lt;br /&gt;
Handler for click events&lt;br /&gt;
onDblClick&lt;br /&gt;
Handler for double-click events&lt;br /&gt;
onKeyDown&lt;br /&gt;
Handler for KeyDown events&lt;br /&gt;
onKeyPress&lt;br /&gt;
Handler for KeyPress events&lt;br /&gt;
onKeyUp&lt;br /&gt;
Handler for KeyUp events&lt;br /&gt;
onLoad&lt;br /&gt;
Handler that is used when Document has finished loading&lt;br /&gt;
onMouseDown&lt;br /&gt;
Handler for MouseDown events&lt;br /&gt;
onMouseUp&lt;br /&gt;
Handler for MouseUp events&lt;br /&gt;
onUnLoad&lt;br /&gt;
Handler that is used when Document unloaded from window&lt;/div&gt;</summary>
			</entry>

	</feed>