-1
I have this code:
colors = ["red","green"]
let xmlRowString = "<imagens>";
for(let y = 0; y < this.colors.length; y++){
let r = colors[y];
xmlRowString += "<imagem class="+r+"></imagem>";
}
xmlRowString += "</imagens>";
This returns:
<imagens><imagem class=red></imagem> <imagem class=green></imagem></imagens>
What I need:
<imagens><imagem class="red"></imagem><imagem class="green"></imagem></imagens>
It’s about the Storage site.
What is the relation of the problem with local Storage?
– Woss
When I do Let parser = new Domparser(); xmlDoc=parser.parseFromString(localStorageRow,"text/xml"); does not recognize the string
– Yunrin 127