the xml format data returned by the backend through the ajax request is as follows:
var result=
<result>
<gameResult code="95588">
<row gmcode="AB111111"/>
<row gmcode="AB222222"/>
<row gmcode="AB333333"/>
<row gmcode="AB444444"/>
<row gmcode="AB555555"/>
<row gmcode="AB666666"/>
</gameResult>
</result>
how do I delete < row gmcode= "AB444444" / > and then < row / >. Are there any attributes similar to index? It"s not clear to use xml data for the first time.
get
var result=
<result>
<gameResult code="95588">
<row gmcode="AB111111"/>
<row gmcode="AB222222"/>
<row gmcode="AB333333"/>
</gameResult>
</result>