一个把WORD转换成HTML的程序
2001-10-11 11:04:41 来源:WEB开发网核心提示:这个程序主要用了IE5.5的一个特性您的浏览器必须是IE5.5或以上版本<html><head><title>Word2Html</title><script language="javascript">function convert2h
这个程序主要用了IE5.5的一个特性
您的浏览器必须是IE5.5或以上版本
<html>
<head>
<title>Word2Html</title>
<script language="javascript">
function convert2html(){
html.value = word.innerHTML;
}
</script>
</head>
<body>
<p>请在这里贴入WORD文件内容
<div style="border:1 outset #ffffff; overflow:auto;width:80%;height:50%" id="word" contenteditable></div>
<input type="button" value="转换成HTML" onclick="convert2html()"><br>
<textarea cols="80" rows="10" id="html"></textarea><br>
注意:您的浏览器必须是IE5.5后以上,否则无法插入文字!
</body></html>
您的浏览器必须是IE5.5或以上版本
<html>
<head>
<title>Word2Html</title>
<script language="javascript">
function convert2html(){
html.value = word.innerHTML;
}
</script>
</head>
<body>
<p>请在这里贴入WORD文件内容
<div style="border:1 outset #ffffff; overflow:auto;width:80%;height:50%" id="word" contenteditable></div>
<input type="button" value="转换成HTML" onclick="convert2html()"><br>
<textarea cols="80" rows="10" id="html"></textarea><br>
注意:您的浏览器必须是IE5.5后以上,否则无法插入文字!
</body></html>
更多精彩
赞助商链接