zoukankan      html  css  js  c++  java
  • word文档----to——html

    <html>
    
    <head>
    
    <title>Word2Html</title>
    
    <script language="javascript">
    
    function convert2html(){
    
    var htt;
    
    htt=document.getElementById("word").innerHTML;
    console.log(htt);
    
    htt = htt.replace(/</?SPAN[^>]*>/gi, "" );
    
            // Remove Class attributes
    
            htt = htt.replace(/<(w[^>]*) class=([^ |>]*)([^>]*)/gi, "<$1$3") ;
    
            // Remove Style attributes
    
            htt = htt.replace(/<(w[^>]*) style="([^"]*)"([^>]*)/gi, "<$1$3") ;
    
            // Remove Lang attributes
    
            htt = htt.replace(/<(w[^>]*) lang=([^ |>]*)([^>]*)/gi, "<$1$3") ;
    
            // Remove XML elements and declarations
    
            htt = htt.replace(/<\??xml[^>]*>/gi, "") ;
    
            // Remove Tags with XML namespace declarations: <o:p></o:p>
    
            htt = htt.replace(/</?w+:[^>]*>/gi, "") ;
    
            // Replace the &nbsp;
    
            htt= htt.replace(/&nbsp;/, " " );
    
            //我的replace
            //
            htt= htt.replace(/align="justify"/gi, 'class="justify"');
    
            // Transform <P> to <DIV>
    
            var re = new RegExp("(<P)([^>]*>.*?)(</P>)","gi") ;        // Different because of a IE 5.0 error
    
            htt = htt.replace( re, "<div$2</div>" ) ;
    
        html.value = htt;     
    
    }
    
    // 清除WORD冗余格式并粘贴
    
    function cleanAndPaste(  ) {
            // Remove all SPAN tags
    
            htt = htt.replace(/</?SPAN[^>]*>/gi, "" );
    
            // Remove Class attributes
    
            htt = htt.replace(/<(w[^>]*) class=([^ |>]*)([^>]*)/gi, "<$1$3") ;
    
            // Remove Style attributes
    
            htt = htt.replace(/<(w[^>]*) style="([^"]*)"([^>]*)/gi, "<$1$3") ;
    
            // Remove Lang attributes
    
            htt = htt.replace(/<(w[^>]*) lang=([^ |>]*)([^>]*)/gi, "<$1$3") ;
    
            // Remove XML elements and declarations
    
            htt = htt.replace(/<\??xml[^>]*>/gi, "") ;
    
            // Remove Tags with XML namespace declarations: <o:p></o:p>
    
            htt = htt.replace(/</?w+:[^>]*>/gi, "") ;
    
            // Replace the &nbsp;
    
            htt = htt.replace(/&nbsp;/, " " );
    
            // Transform <P> to <DIV>
    
            var re = new RegExp("(<P)([^>]*>.*?)(</P>)","gi") ;        // Different because of a IE 5.0 error
    
            htt = htt.replace( re, "<div$2</div>" ) ;
    
            html.value = htt;  
    }
    
    </script>
    
    </head>
    
    <body>
    
    <p>请在这里贴入WORD文件内容
    
    <div style="border:1 outset #ffffff; overflow:auto;80%;height:50%" id="word" contenteditable></div>
    
    <input type="button" value="转换成HTML" onClick="convert2html()">
    <input type="button" value="清除格式" onClick="cleanAndPaste()">点击后把生成的代码,全选后复制,并粘贴到wiki的编辑框中<br>
    
    <textarea cols="115" rows="18" id="html"></textarea><br>
    
    注意:您的浏览器必须是IE5.5后以上,否则无法插入文字!
    
    </body></html>
  • 相关阅读:
    React 创建一个自动跟新时间的组件
    React 组件传值 父传递儿子
    React 以两种形式去创建组件 类或者函数(二)
    React 语法基础(一)之表达式和jsx
    ref的使用
    使用scale等比例缩放图片
    Vue动态加载图片图片不显示
    div里面的元素在【垂直 方向】上水平分布 使用calc()函数动态计算
    控制label标签的宽度,不让它换行 label标签左对齐
    表单验证
  • 原文地址:https://www.cnblogs.com/beimingbingpo/p/9847868.html
Copyright © 2011-2022 走看看