タグ

documentとdomに関するsecondlifeのブックマーク (3)

  • DHTMLリファレンス

    DHTMLリファレンス これらのリンクは、Web作成者が容易にリファレンス ドキュメントにアクセスできるように用意されている。これによって、魅力あるコンテンツを作成することができる。 ドキュメントオブジェクトモデル リファレンス オブジェクト プロパティ メソッド イベント コレクション HTMLリファレンス エレメント キャラクタセット CSSリファレンス CSS属性 補足リファレンス カラーテーブル チップスとトリック トップに戻る © 1997 Microsoft Corporation. All rights reserved. Terms of Use.

    DHTMLリファレンス
    secondlife
    secondlife 2008/12/15
    IE での DOM API など
  • Gecko DOM Reference - MDC

    The Document Object Model (DOM) connects web pages to scripts or programming languages by representing the structure of a document—such as the HTML representing a web page—in memory. Usually, that means JavaScript, although modeling HTML, SVG, or XML documents as objects are not part of the core JavaScript language, as such. The DOM represents a document with a logical tree. Each branch of the tre

    Gecko DOM Reference - MDC
  • [暴満館] JavaScriptによるCSSの操作

    またFirefoxは短縮形で取得しようとすると、設定していないプロパティにデフォルト値が入った状態で返ってくるので注意する。 getStyleValue( "div.hoge", "background" ) //Mozilla : rgb(17, 34, 51) none repeat scroll 0% 0% ルールを削除する function deleteRule( index, sheetindex ) { if( sheetindex == undefined ) sheetindex = 0; document.styleSheets[ sheetindex ].deleteRule( index ); } 全てのルールにはインデックスが振られており、それを指定することでルールから消すことができる。 ただ、同じセレクタで上書きするのとほとんど変わらないので、あまり必要にならない

  • 1