我们正在使用crm 2015,它没有问题。 所有代码都在IE和Chrome中正确执行。 但是当我们尝试使用Microsoft的crm应用程序时,我们得到错误:'xpathevaluator'未定义。
我认为 xrmservicetoolkit 会引发错误。
if (typeof (node.selectSingleNode) != "undefined") {
return node.selectSingleNode(xpathExpr);
} else {
var xpe = new XPathEvaluator();
var xPathNode = xpe.evaluate(xpathExpr, node, _NSResolver, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
return (xPathNode != null) ? xPathNode.singleNodeValue : null;
}