公司的项目一直都只能在IE8中使用,去年客户提出了浏览器兼容性问题,现在有时间全心全意做这件事情。bug就就像牛身上的毛一样,一行一行的js代码解决兼容性问题。
以上的四张图片是在js中调试textContent和text中弹出的结果,为了使原本只能在IE8中使用的项目,在其他浏览器中兼容做出了一下代码的修改,希望以后的工作中有帮助。
//判断是否是IE浏览器 gssong update
if (window.ActiveXObject) {
sFname = oXml.documentElement.childNodes[i].childNodes[0].text.toUpperCase();
} else {
sFname = oXml.documentElement.childNodes[i].childNodes[0].textContent.toUpperCase();
}