var log = Function.prototype.bind.call(console.log, console);
jQuery.get("metadata.xml", function(metadata){
xmlCols = $(metadata).find('UXView');//'.find('ListDefintion').find('uxv\\:Column');
log.apply(console, [xmlCols]);
});
console.log 在 chrome 中工作得非常好,但这个解决方法(在 IE 9 中获得 console.log 等效项,如stackoverflow 本身的这篇文章中所建议的那样),在 IE 中显示 [object object] 在控制台中。当我尝试在手表中查看它时,它会显示整个对象及其所有属性,我不知道如何在其中查看实际的 xml?
如果有办法在 Visual Studio 中查看它(使用调试器命令),我可以使用它,但直到现在它在那里也显示相同的东西。谢谢...