DHTML是动态HTML,在标准HTML上应用CSS和script产生效果

解决方案 »

  1.   

    1. 是不是所有的DHTML语句都可以在<script language="javascript"></script>中描述?
    yes, but you can also put them in attributes of tags, for example
    <body onload="init()">...</body>
    <div onmouseover="this.color='red';">...</div>2. HTML is the language you use to display contents in a browser. CSS is the language/syntax you use to specify the styles (layout, font, color, position,..) of the elements of the contents. DHTML is the language/model you change those elements on the fly (dynamically).