0

In Javascript I have an XML DOM. I am trying to select a node within the DOM by using SelectSingleNode. Something like cell.SelectSingleNode(stuff [@attrjunk = 'MATCH']). So what I want to match on has a backslash . What do I replace the MATCH with to match on abc\xyz?? I've tried abc\xyz and abc\xyz but neither seems to work unfortunately...

4

1 回答 1

0

Try abc\\xyz.

于 2009-07-06T14:48:09.843 回答