这个程序主要用了IE5.5的一个特性
您的浏览器必须是IE5.5或以上版本
1<html>
2<head>
3<title>Word2Html</title>
4<script language="javascript">
5function convert2html(){
6html.value = word.innerHTML;
7}
8</script>
9</head>
10<body>
11<p>请在这里贴入WORD文件内容
12<div contenteditable="" id="word" style="border:1 outset #ffffff; overflow:auto;width:80%;height:50%"></div>
13<input onclick="convert2html()" type="button" value="转换成HTML"/><br/>
14<textarea cols="80" id="html" rows="10"></textarea><br/>
15注意:您的浏览器必须是IE5.5后以上,否则无法插入文字!
16</p></body></html>