вы можете сделать это, как показано ниже.
return this.Content(xmlString, "text/xml");
или используйте тег <iframe>
, как показано ниже
function hide() {
document.getElementById("iframe1").style.display = "none";
}
function show() {
document.getElementById("iframe1").style.display = "block";
}
<iframe src="Demo.XML" width="100%" id="iframe1" height="2000px" frameborder="no" scrolling="no" >
<xml>
<id>1</id>
</xml>
</iframe>
<button onclick="show();">show</button>
<button onclick="hide();">hide</button>