您现在的位置: 365建站网 > 365文章 > javascript 替换有害字符(学习一下prototype与javascript正则)

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

文章来源:365jz.com     点击数:285    更新时间:2009-09-19 10:23   参与评论
<!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>

如对本文有疑问,请提交到交流论坛,广大热心网友会为你解答!! 点击进入论坛

发表评论 (285人查看0条评论)
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
昵称:
最新评论
------分隔线----------------------------

快速入口

· 365软件
· 杰创官网
· 建站工具
· 网站大全

其它栏目

· 建站教程
· 365学习

业务咨询

· 技术支持
· 服务时间:9:00-18:00
365建站网二维码

Powered by 365建站网 RSS地图 HTML地图

copyright © 2013-2024 版权所有 鄂ICP备17013400号