Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Summary of Changes

この節は記事中で説明したすべての要素や手段のアップデートの概要をのべています。詳細な解説はそれぞれを説明している節を見てください。

独自あるいは推奨されない機能 W3C の機能あるいは推奨される代替手段
非推奨 FONT HTML 4.01 SPAN
CSS1 color: ; font-family: ; font-size: ;
非推奨 CENTER or align="center" CSS1 text-align: center; for in-line elements like text or image
非推奨 CENTER or align="center" CSS1 margin-left: auto; margin-right: auto;
for block-level elements
非推奨 bgcolor CSS1 background-color: ;
非標準 EMBED HTML 4.01 OBJECT
非推奨 APPLET HTML 4.01 OBJECT
非標準 MARQUEE HTML 4.01 DIV とスクリプト
非標準 BGSOUND HTML 4.01 OBJECT
独自あるいは推奨されない機能 W3C の機能あるいは推奨される代替手段
IE5+

id_attribute_value
document.all.id_attribute_value

document.all[id_attribute_value]
DOM level 2:
document.getElementById(id_attribute_value)
IE5+ FormName.InputName.value DOM level 1:

document.forms["FormName"].InputName.value

IE5+ InputName.value DOM level 1:

document.forms["FormName"].InputName.value

IE5+ FormCtrlName DOM level 1:

document.forms["FormName"].FormCtrlName

IE5+ document.forms(0) DOM level 1:

document.forms[0]

IE ElemRef.innerText DOM Level 1 (Core) インターフェース

We could introduce DOM 3 Core textContent attribute here which is supported by Mozilla 1.5+ and is a perfect equivalent to innerText. https://www.w3.org/TR/2004/REC-DOM-Le...e3-textContent

IE5+ ElemRef.style.pixelTop DOM level 2: parseInt(ElemRef.style.top, 10)
IE5+ ElemRef.style.pixelLeft = x; ElemRef.style.pixelTop = y; DOM level 2: ElemRef.style.left = x + "px"; ElemRef.style.top = y + "px";
IE5+ new ActiveXObject("Microsoft.XMLHTTP") new XMLHttpRequest()
独自あるいは推奨されない機能 W3C の機能あるいは推奨される代替手段

ドキュメントのタグと貢献者

 このページの貢献者: kohei.yoshino
 最終更新者: kohei.yoshino,