跨不同瀏覽器讀取xml檔案的節點

2021-08-17 09:29:11 字數 817 閱讀 3943

<?xml version="1.0" encoding="utf-8" ?>

配置項nodes>

geoserverurls>

配置項geoserverwfsurls>

配置項workspace>

gisconfig>

知識點:

1. window.activexobject

這個用來判斷瀏覽器是否支援activex控制項,以便區分不同的瀏覽器類別

2.xmlhttprequest 物件

不同瀏覽器不同的建立方法

xmlhttprequest 物件用於在後台與伺服器交換資料。

//node 為xml中節點資訊,例如'geoserverurls','geoserverwfsurls'

function

getipxml

(node) else

}var elements = xmldoc.getelementsbytagname(node);

var elementslen = elements.length;

if(elementslen == 0 ) return

"error-沒有找到對應的屬性."

var childlen = elements[0].getelementsbytagname('nodes').length;

if(childlen == 0) else

return nodes

}

};

不同瀏覽器載入不同檔案

相對環境 ie8模擬 ie11模擬 條件ie7 ie8ie7 ie8ie9 ie10 ie11谷歌x x x x xxvvvxx x xx x xx x x xxvv v x x xx x xx x xvvv x x x x xx vvvx xx x x x x xxvvvxx x xx vvvx ...

讀取谷歌瀏覽器history 檔案

chrome上網記錄提取小試 history 知乎 zhihu.com chrome歷史記錄分析 巨獸 墨菲特 cnblogs.com 這個檔案是sqllite格式 python 讀取sqllite 1 coding utf8 23 4 author wang yanlong 5date 2017 ...

ie瀏覽器和ff瀏覽器解析xml檔案時的區別

ie和非ie對xml文件解析不同。1.ie下new activexobject microsoft.xmldom ff下用document.implementation.createdocument null 2.ie下可用方法loadxml ff下通過var oparser new dompars...