I use xml2json change XML to JSON.
But the result of JSON is very strange like this,
console.log(xml);
var json = $.xml2json(xml);
console.log(json);
But when I console.log(json.#document)
, it's become undefined.
How could I get the #document
from JSON??