Friday, March 6, 2009

code HTML转换工具

更多精彩请到 http://www.139ya.com

code HTML转换工具

<html><head>

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>HTML转换工具</title>
<script type="text/javascript" language="JavaScript">
<!--
function encode() {
var o = document.getElementById("htmlcode");
var htmlcode = o.value;
htmlcode = htmlcode.replace(/</g, "<");
htmlcode = htmlcode.replace(/>/g, ">");
o.value = htmlcode;
}
-->
</script>
</head><body>
<textarea id="htmlcode" style="width: 100%; height: 90%;"></textarea>
<input onclick="encode();" value="转换" type="button">
</body></html>

No comments: