日期:2014-05-16 浏览次数:20565 次
<script>
window.onload=function(){
var oXmlDom = document.implementation.createDocument("","Steel-ERP",null);
var oRoot = oXmlDom.documentElement;
var xs = new XMLSerializer();
var node = document.implementation.createDocument("","Head",null).documentElement;
node.setAttribute("sid","899898132932");
oRoot.appendChild(node);
var node = document.implementation.createDocument("","Client",null).documentElement;
node.setAttribute("job","new");
node.setAttribute("file","1222");
node.setAttribute("file1","eeee");
oRoot.appendChild(node);
alert(xs.serializeToString( oRoot ));
}
</script>