Document对象的createElement(tagName)方法在HTML文档中不区分大小写,在XML文档中区分大小写.
所以可以写一下函数来判断文档是不是XML文件
function isXML() {
document.createElement(‘p‘).tagName !== ‘P‘;
}
时间: 2024-10-12 04:03:12
Document对象的createElement(tagName)方法在HTML文档中不区分大小写,在XML文档中区分大小写.
所以可以写一下函数来判断文档是不是XML文件
function isXML() {
document.createElement(‘p‘).tagName !== ‘P‘;
}