标签: javascript .net xml asp.net-mvc
任何人请帮忙,这是一个示例xml字符串,此字符串是动态的
string htmlSample = "<Employee><Details Address='xxx' Place='yyy'/></Employee>";
我想在div中打印这种格式
<Employee> <Details Address="xxx" Place="yyy" /> </Employee>
使用JavaScript我该如何实现?