欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

一个把WORD转换成HTML的程序

程序员文章站 2022-05-24 15:36:26
这个程序主要用了ie5.5的一个特性您的必须是ie5.5或以上版本word2html
这个程序主要用了ie5.5的一个特性
您的必须是ie5.5或以上版本

<html>
<head>
<title>word2html</title>
<script language="javascript">
function convert2html(){
    html.value = word.innerhtml;    
}
</script>
</head>
<body>
<p>请在这里贴入word文件内容
<p style="border:1 outset #ffffff; overflow:auto;width:80%;height:50%" id="word" contenteditable></p>
<input type="button" value="转换成html" onclick="convert2html()"><br>
<textarea cols="80" rows="10" id="html"></textarea><br>
注意:您的浏览器必须是ie5.5后以上,否则无法插入文字!
</body></html>