jsスタイル関連
ほとんどの場合、私たちは自然にnodeを使用します.style.xx方式でスタイルを得るが,この方法はラベルに組み込まれたstyleにのみ適用される.を取得する場合、または.cssファイルのスタイルは、documentを通じて2つあります.styleSheetsオブジェクト、もう1つは「最終スタイル」オブジェクトで、IEのこのオブジェクトをcurrentStyle、FFのこのオブジェクトをdocumentと呼ぶ.defaultView.
読み取りスタイル:
書き込みスタイル:
やはりnodeを使います.style.スタイルName=valueの方法
読み取りスタイル:
if(document.all){
eval("node.currentStyle." + styleName);
} else {
eval("document.defaultView.getComputedStyle(node, null)." + styleName);
}
書き込みスタイル:
やはりnodeを使います.style.スタイルName=valueの方法