我有一个应该从文件读入变量
的函数我想知道读取的有效性,并想知道在执行上传操作后是否有任何方法可以检查变量的内容。
function handleFileSelect(evt) {
var files = evt.target.files; // FileList object
// Loop through the FileList
for (var i = 0, f; f = files[i]; i++) {
var reader = new FileReader();
parser=new DOMParser();
// Closure to capture the file information.
reader.onload = (function(theFile) {
return function(e) {
// Print the contents of the file
// var span = document.createElement('span');
xmlDoc=parser.parseFromString(e.target.result,"text/xml");
try{
DistributomeXML_Objects=xmlDoc.documentElement.childNodes;
}catch(error){
DistributomeXML_Objects=xmlDoc.childNodes;
}
//document.getElementById('list').insertBefore(span, null);
};
})(f);
// Read in the file
//reader.readAsDataText(f,UTF-8);
reader.readAsText(f);
}
//xmlDoc.getElementsByTagName("distributome").item(0).appendChild(node);
traverseXML(false, null, DistributomeXML_Objects, distributome.nodes, distributome.edges, distributome.references, distributomeNodes, referenceNodes);
}
我想检查xmlDoc是否有效。如果不使用print语句,这将是一个很好的方法。
答案 0 :(得分:2)
您可以使用
使用控制台和日志变量内容console.log("my variable content",variable);
您可以使用firebug或chrome或opera的本机控制台在浏览器控制台中查看它...