Z
Zhan feng Wang
Hi,friends,
I have a XML string, such as xs="<?xml version='1.0' ?><testh><test1
1/><test2 2/></testh>",how can I display(current window or a new window)
it as XML like:
−<testh>
<test1> 1 </test1>
<test2> 2 </test2>
</testh
I wrote as following, but do not work:
print "<script language=\"javascript\">\nfunction t(){\n"
print "document.write('",xs,"');\n"
print "}\nt();</script>\n"
or as:
print "<script language=javascript>\n"
print "winx=open('','XML','menubar,scrollbars,resizeable');\n"
print "winx.document.writeln('xs');\n"
Anyone knows it?
Thanks
I have a XML string, such as xs="<?xml version='1.0' ?><testh><test1
1/><test2 2/></testh>",how can I display(current window or a new window)
it as XML like:
−<testh>
<test1> 1 </test1>
<test2> 2 </test2>
</testh
I wrote as following, but do not work:
print "<script language=\"javascript\">\nfunction t(){\n"
print "document.write('",xs,"');\n"
print "}\nt();</script>\n"
or as:
print "<script language=javascript>\n"
print "winx=open('','XML','menubar,scrollbars,resizeable');\n"
print "winx.document.writeln('xs');\n"
Anyone knows it?
Thanks