📑 Table of Contents

動態HTMLDynamic HTML,简称DHTMLDHML)指的是网页内容随着用户或计算机程序提供的参数而变化的HTML,通过结合HTML、用戶端脚本语言(Client Side Script,如JavaScript)、串接樣式表(CSS)和文件物件模型(DOM)来创建動態網頁內容。

动态HTML

应用

编辑

动态HTML技术根据运行地点,分為客户端脚本(也称浏览器脚本)和服务器脚本。

  1. 客户端脚本
    客户端脚本包括JavaScript技术。是指在某个页面中,通过鼠标点击或键盘操作,与网页产生交互动作;或者在特定时间激发某个事件。客户端脚本在用户的电脑系统里运行。常用于多媒体展示和远程脚本调用。
  2. 服务器脚本
    服务器脚本包括ASP, ColdFusion, Perl, PHP, Ruby, WebDNA等技术,一般通过Common Gateway Interface (CGI)来产生动态页面。通过在HTML表单中填写数据,更改URL地址中的参数,更改浏览器的类型等,每次都可能产生不同的页面,称之为动态页面。

最常见的例子包括:

  • 产生交互式表单
  • 生成类似WebCT的e-learning交互式在线基础培训
  • 创建基于浏览器的视频游戏

結構

编辑

一個典型的使用 DHTML 如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <title>DHTML example</title>
    <script type="text/javascript"> 
      function init() {
      myObj = document.getElementById("navigation");
      // .... more code
      }
      window.onload=init;
    </script>
  </head>
  <body>
    <div id="navigation"></div>
    <pre>
      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:
    </pre>
    <script type="text/javascript" src="myjavascript.js"></script>
  </body>
</html>

範例

编辑

範例如下:[1]

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
  <head>
    <title>Test</title>
    <style type="text/css">
      h2 {background-color: lightblue; width: 100%}
      a {font-size: larger; background-color: goldenrod} 
      a:hover {background-color: gold}
      #example1 {display: none; margin: 3%; padding: 4%; background-color: limegreen}
    </style>
    <script type="text/javascript">
      function changeDisplayState (id) {
        d=document.getElementById("showhide");
        e=document.getElementById(id);
        if (e.style.display == 'none' || e.style.display == "") {
          e.style.display = 'block';
          d.innerHTML = 'Hide example..............';
        } else {
          e.style.display = 'none';
          d.innerHTML = 'Show example';
        }
      }
    </script>
  </head>
  <body>
    <h2>How to use a DOM function</h2>
    <div><a id="showhide" href="javascript:changeDisplayState('example1')">Show example</a></div>
    <div id="example1">
      This is the example.
      (Additional information, which is only displayed on request)...
    </div>
    <div>The general text continues...</div>
  </body>
</html>

參考文獻

编辑
  1. ^ 存档副本. [2011-02-10]. (原始内容存档于2020-08-09). 

📚 Artikel Terkait di Wikipedia

V8 (JavaScript引擎)

binding client-side C++ classes to JavaScript. v8cgi (页面存档备份,存于互联网档案馆) is a v8-based framework for serving web application written in JavaScript. node

网页存储

Cookie 在一些關鍵的地方並不相同。 Cookie可以被客戶端和伺服器存取,但網絡儲存只限被客戶端腳本(client-side scripts,例如 Javascript)控制。網絡儲存的資料並不會在每個 HTTP 請求下傳送到伺服器,網絡伺服器亦不能直接把資料直接寫入到網絡儲存,但是當然可以發出讀取和寫入請求。

Flashproxy

(英语).  Jones, Martin. Biting the Hand That Serves You: A Closer Look at Client-Side Flash Proxies for Cross-Domain Requests. Detection of Intrusions and

XML-RPC

(页面存档备份,存于互联网档案馆): For PHP HaXR: Client and server library for Haskell xi library with PHP and Javascript XML-RPC: For PHP and Javascript Ruby XML-RPC library: For

JSONP

[2008-09-08]. (原始内容存档于2009-12-04) (英语).  GWT Tutorial: How to Read Web Services Client-Side with JSONP. Google Web Toolkit Applications. February 6, 2008 [2009-07-03]

網頁

web pages, and JavaScript to specify the behavior of web pages.  引文格式1维护:未识别语文类型 (link) Usage Statistics of JavaScript as Client-side Programming Language

GlobalSight

  Interview with Gary Prioste VP of Technology Solutions, Welocalize. ClientSide News Magazine. 2008-11 [2010-09-26]. (原始内容存档于2021-01-26).  存档副本. [2013-09-21]

Qt

無障礙相容的應用程式稱為AT-Servers,而輔助工具被稱為AT-Clients。Qt應用程式通常會是一個AT-Server,但特別的程式也可能如同AT-Client方式工作。 Qt的字體引擎能夠在同一時間正確的顯示各種不同的書寫系統。並且Qt內部使用Unicode編碼來儲存文字。