• javascript 替换有害字符(学习一下prototype与javascript正则)


    <!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>
        
    <title>javascript 替换有害字符(学习一下prototype与javascript正则)</title>
        
    <script type="text/javascript">
            
    /***********************************
             /g是global全局替换,如果没有这个标识,只替换第一处
             /asdf/gi,i是忽略大小写。
             还有个m不常用,是否换行匹配
            **********************************
    */
            String.prototype.htmlEncode 
    = function(){
                
    return this.replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/\n/g,"<br />");
            };
            
    function f(){
                document.getElementById(
    "div1").innerHTML="<00<0>".htmlEncode();//编码之后
                alert("<00<0>".htmlEncode());
                document.getElementById(
    "div2").innerHTML=document.getElementById("Text1").value.htmlEncode();//输入<>/n之类试试
                alert(document.getElementById("Text1").value.htmlEncode());
            }
        
    </script>
    </head>
    <body>
    <input id="Text1" type="text" value="<>\n" />
    <div id="div1">hello</div>
    <input type="button" value="ok" onclick="f();" />
    <div id="div2">hi</div>
    </body>
    </html>
  • 相关阅读:
    ZOJ 3278 8G Island 二分+二分
    POJ 2785 4 Values whose Sum is 0 二分
    POJ 3063 Sherlock Holmes 随机化
    UVA 10881 Piortr‘s Ants 思维 模拟
    UVA 1388 Graveyard
    Codeforces Round #410 (Div. 2) B. Mike and strings
    Codeforces 821B
    51nod 1103 N的倍数 抽屉原理
    Codeforces Round #427 (Div. 2) 835D
    Codeforces Round #427 (Div. 2) 835C-Star sky 二维前缀和
  • 原文地址:https://www.cnblogs.com/greatverve/p/1534274.html
Copyright © 2020-2023  润新知