zoukankan      html  css  js  c++  java
  • 过滤HTML标签

    View Code
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>无标题文档</title>
    <script>
    window.onload=function()
    {
        var oTxt1=document.getElementById('txt1');
        var oTxt2=document.getElementById('txt2');
        var oBtn=document.getElementById('btn');
        
        oBtn.onclick=function()
        {
            var reg=/<[^<>]+>/g;
            oTxt2.value=oTxt1.value.replace(reg,'');
        };
    };
    </script>
    </head>
    
    <body>
    <textarea id="txt1" cols="40" rows="10"></textarea><br />
    <input type="button" value="过滤" id="btn" /><br />
    <textarea id="txt2" cols="40" rows="10"></textarea>
    </body>
    </html>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>无标题文档</title>
    <script>
    window.onload=function()
    {
        var oTxt1=document.getElementById('txt1');
        var oTxt2=document.getElementById('txt2');
        var oBtn=document.getElementById('btn');
        
        oBtn.onclick=function()
        {
            var reg=/<[^<>]+>/g;
            oTxt2.value=oTxt1.value.replace(reg,'');
        };
    };
    </script>
    </head>
    
    <body>
    <textarea id="txt1" cols="40" rows="10"></textarea><br />
    <input type="button" value="过滤" id="btn" /><br />
    <textarea id="txt2" cols="40" rows="10"></textarea>
    </body>
    </html>
  • 相关阅读:
    myeclipse启动后,卡在loading workbench界面
    oracle数据库导入dmp文件
    ORA-28009: 应当以 SYSDBA 身份或 SYSOPER 身份建立 SYS 连接
    debug启动项目很慢
    CSS利用border绘制图形
    HTML创建链接框
    CSS实现单行文本溢出显示省略号
    HTML5中的Web Worker
    HTML拖放元素
    Canvas和SVG的比较
  • 原文地址:https://www.cnblogs.com/52css/p/3038337.html
Copyright © 2011-2022 走看看