|
就像firefox的web-developer的"查看源代码"->"查看编译后的源代码"那样的功能;
比如:
<html>
<body>
<div id="a"></div>
<script>
document.getElementById("a").appendChild(document.createTextNode("aaa"));
</script>
<body>
</html>
用web-developer的"查看源代码"->"查看编译后的源代码"查看的话源代码就变成了:
<html><head></head><body>
<div id="a">aaa</div>
<script>
document.getElementById("a").appendChild(document.createTextNode("aaa"));
</script>
</body></html>
但是我现在需要通过调用函数的方式来转换,不知道linux有没有这样的lib可以使用 |
|