Snipe,
Я оказался немного не прав. В кратце - DHTML Object Model это устаревшая объектная модель по управлению html элементами. Возможно имеется в виду
document.all,
document.forms,
document.body.children и т.д. В общем, устаревшая объектная модель документа.
Вот выдержка с msdn:
Цитата:
|
W3C DOM vs. the DHTML Object Model
An object model is a mechanism for accessing and programming a document or program. The DHTML Object Model, available in Internet Explorer 4.0, provides access to almost all elements, and to all attributes on an element. Every element is exposed to the DHTML Object Model in Internet Explorer 5 and later. The W3C DOM is consistent with the DHTML Object Model in that every element and every attribute is accessible in script.
The W3C DOM is a robust evolution from the DHTML Object Model because it provides a structured model and logical interface for authors to access and update elements and attributes. Authors who are familiar with the DHTML Object Model or scripting object models should find the W3C DOM implementation fairly straightforward to use. Those unfamiliar with the DHTML Object Model or object models in general, are encouraged to read the DHTML Object Model article.
|