我编写了一段代码来搜索整个文档并查找数据。要做到这一点,我正在使用每个功能。现在这在Chrome和Firefox中工作得非常好,但是在JqueryFramework.js中的每个函数的IE10实现中,它抛出错误,说“无法获取属性'替换'未定义或空引用”。
这是我写的代码
$(xml).find('interface').each(function () {
oldxml=$(this);
if ($(this).find('Param').html()!=null) {
// alert($(this).find('Param').html());
if ($(this).find('Param').html().indexOf("Tunnel0")>-1) {
$(oldxml).find('tunnel').each(function () {
// alert($(oldxml).html());
if ($(this).find('Param').text().length >0 ) {
//code
// alert($(oldxml).text());
interfaceArray[interfaceArray.length]=$(this).find('Param').text().trim();
//alert($(this).find('Param').text().trim());
}
if ($(this).find('IPAddressHostName').text().length >0 ) {
//code
peerAddressArray=$(this).find('IPAddressHostName').text().trim();
}
});
}else if ($(this).find('Param').html().indexOf("Tunnel1")>-1) {
$(oldxml).find('tunnel').each(function () {
if ($(this).find('Param').text().length >0 ) {
//code
interfaceArray[interfaceArray.length]=$(this).find('Param').text().trim();
}
if ($(this).find('IPAddressHostName').text().length >0 ) {
//code
peerAddressArray=$(this).find('IPAddressHostName').text().trim();
}
});
}
}
});