2005-11-01から1ヶ月間の記事一覧

DOM Level 2/3 標準技術をMSIEで使う(XML読み込みとXPath)

XML 文書読み込みの準備 * XML 文書を読み込んで DOM オブジェクトとして扱うためには、 MSIE では ActiveXObject, Mozilla では createDocument() メソッドを使い、 XML 文書を格納するための「箱」を用意する必要があります。 * 本来はMSIE/Mozilla いずれ…

Import XML Document

Import XML Document Page last changed today This page is supposed to be in my frameset.At the moment it only works in Explorer 5+ on Windows and Mozilla.Mark Wilton-Jones wrote a script that makes XML importing work in the other browsers, …

JavaScriptでXMLを扱う方法

Geckoベースのブラウザの場合Geckoベースのブラウザで新規Documentオブジェクトを取得するには、DOM2 Coreで定義された DOMImplementation の createDocumentメソッドを用います。var domDocument = document.implementation.createDocument("", "", null);…