This articlecontainsinstructions or advice. Wikipedia is not a guidebook; please helprewrite such content to be encyclopedic or move it toWikiversity,Wikibooks, orWikivoyage.(January 2025) |
| HTML |
|---|
| HTML and variants |
| HTML elements and attributes |
| Editing |
| Character encodings and language |
| Document and browser models |
| Client-side scripting and APIs |
| Graphics and Web3D technology |
| Comparisons |
Dynamic HTML, orDHTML, is a term which was used by some browser vendors to describe the combination ofHTML,style sheets andclient-side scripts (JavaScript,VBScript, or any other supported scripts) that enabled the creation of interactive and animated documents.[1][2] The application of DHTML was introduced byMicrosoft with the release ofInternet Explorer 4 in 1997.[3][unreliable source?]
DHTML (Dynamic HTML) allows scripting languages, such as JavaScript, to modify variables and elements in a web page's structure, which in turn affect the look, behavior, and functionality of otherwise "static" HTML content after the page has been fully loaded and during the viewing process. Thus the dynamic characteristic of DHTML is the way it functions while a page is viewed, not in its ability to generate a unique page with each page load.
By contrast, adynamic web page is a broader concept, covering any web page generated differently for each user, load occurrence, or specific variable values. This includes pages created by client-side scripting and ones created byserver-side scripting (such asPHP,Python,JSP orASP.NET) where theweb server generates content before sending it to the client.
DHTML is the predecessor ofAjax and DHTML pages are still request/reload-based. Under the DHTML model, there may not be any interaction between the client and server after the page is loaded; all processing happens on the client side. By contrast, Ajax extends features of DHTML to allow the page to initiate network requests (or 'subrequest') to the server even after page load to perform additional actions. For example, if there are multipletabs on a page, the pure DHTML approach would load the contents of all tabs and then dynamically display only the one that is active, while AJAX could load each tab only when it is really needed.
DHTML allows authors to add effects to their pages that are otherwise difficult to achieve, by changing theDocument Object Model (DOM) and page style. The combination of HTML, CSS, and JavaScript offers ways to:
A less common use is to create browser-based action games. Although a number of games were created using DHTML during the late 1990s and early 2000s,[4] differences between browsers made this difficult: many techniques had to be implemented in code to enable the games to work on multiple platforms. Browsers have since then converged towardweb standards, which has made the design of DHTML games more viable. Those games can be played on all major browsers and in desktop and device applications that support embedded browser contexts.
The term "DHTML" has fallen out of use in recent years as it was associated with practices and conventions that tended to not work well between various web browsers.[5]
DHTML support with extensive DOM access was introduced withInternet Explorer 4.0. Although there was a basic dynamic system withNetscape Navigator 4.0, not all HTML elements were represented in the DOM. When DHTML-style techniques became widespread, varying degrees of support among web browsers for the technologies involved made them difficult to develop anddebug. Development became easier whenInternet Explorer 5.0+,Mozilla Firefox 2.0+, andOpera 7.0+ adopted a sharedDOM inherited fromECMAScript.
Later,JavaScript libraries such asjQuery abstracted away many of the day-to-day difficulties in cross-browser DOM manipulation, though better standards compliance among browsers has reduced the need for this.
Typically a web page using DHTML is set up in the following way:
<!DOCTYPE html><htmllang="en"><head><metacharset="utf-8"><title>DHTML example</title></head><bodybgcolor="red"><script>functioninit(){letmyObj=document.getElementById("navigation");// ... manipulate myObj}window.onload=init;</script><!-- Often the code is stored in an external file; this is done by linking the file that contains the JavaScript. This is helpful when several pages use the same script: --><scriptsrc="my-javascript.js"></script></body></html>
The following code illustrates an often-used function. An additional part of a web page will only be displayed if the user requests it.
<!DOCTYPE html><html><head><metacharset="utf-8"><title>Using a DOM function</title><style>a{background-color:#eee;}a:hover{background:#ff0;}#toggleMe{background:#cfc;display:none;margin:30px0;padding:1em;}</style></head><body><h1>Using a DOM function</h1><h2><aid="showhide"href="#">Show paragraph</a></h2><pid="toggle-me">This is the paragraph that is only displayed on request.</p><p>The general flow of the document continues.</p><script>functionchangeDisplayState(displayElement,textElement){if(displayElement.style.display==="none"||displayElement.style.display===""){displayElement.style.display="block";textElement.innerHTML="Hide paragraph";}else{displayElement.style.display="none";textElement.innerHTML="Show paragraph";}}letdisplayElement=document.getElementById("toggle-me");lettextElement=document.getElementById("showhide");textElement.addEventListener("click",function(event){event.preventDefault();changeDisplayState(displayElement,textElement);});</script></body></html>
DHTML is not a technology in and of itself; rather, it is the product of three related and complementary technologies: HTML, Cascading Style Sheets (CSS), andJavaScript. To allow scripts and components to access features of HTML and CSS, the contents of the document are represented as objects in a programming model known as theDocument Object Model (DOM).
The DOM API is the foundation of DHTML, providing a structured interface that allows access and manipulation of virtually anything in the document. The HTML elements in the document are available as a hierarchicaltree of individual objects, making it possible to examine and modify an element and its attributes by reading and setting properties and by calling methods. The text between elements is also available through DOM properties and methods.
The DOM also provides access to user actions such as pressing a key and clicking the mouse. It is possible to intercept and process these and other events by creatingevent handler functions and routines. The event handler receives control each time a given event occurs and can carry out any appropriate action, including using the DOM to change the document.
Dynamic styles are a key feature of DHTML. By using CSS, one can quickly change the appearance and formatting of elements in a document without adding or removing elements. This helps keep documents small and the scripts that manipulate the document fast.
The object model provides programmatic access to styles. This means you can change inline styles on individual elements and change style rules using simple JavaScript programming.
Inline styles are CSS style assignments that have been applied to an element using the style attribute. You can examine and set these styles by retrieving the style object for an individual element. For example, to highlight the text in a heading when the user moves the mouse pointer over it, you can use the style object to enlarge the font and change its color, as shown in the following simple example.
<!DOCTYPE html><htmllang="en"><head><metacharset="utf-8"><title>Dynamic Styles</title><style>ul{display:none;}</style></head><body><h1id="first-header">Welcome to Dynamic HTML</h1><p><aid="clickable-link"href="#">Dynamic styles are a key feature of DHTML.</a></p><ulid="unordered-list"><li>Change the color, size, and typeface of text</li><li>Show and hide text</li><li>And much, much more</li></ul><p>We've only just begun!</p><script>functionshowMe(){document.getElementById("first-header").style.color="#990000";document.getElementById("unordered-list").style.display="block";}document.getElementById("clickable-link").addEventListener("click",function(event){event.preventDefault();showMe();});</script></body></html>