用正則表達(dá)式格式化html標(biāo)簽的代碼
更新時(shí)間:2007年02月25日 00:00:00 作者:
復(fù)制代碼 代碼如下:
<html>
<head>
</head>
<body>
<style>
#x_edit{
height:320px;
width:540px;
border:1px solid #666666;
color:red;
filter:chroma(color="#0f0f0f");
background-color:#f0f0f0;
font-family:verdana;
font-size:11px;
line-height:13px;
margin-left:16px;
overflow:scroll;
border-left:none;
scrollbar-arrow-color:#666666;
scrollbar-base-color:#666666;
scrollbar-darkshadow-color:#f0f0f0;
scrollbar-face-color:#f0f0f0;
}
</style>
<span onclick="abc()">格式化</span>
<div contentEditable="true" id="x_edit" style='position:relative;line-height:13px;background-color:#f0f0f0;filter:Chroma(color=#FDFEFF);width:540px;height:320px;overflow:auto;white-space: nowrap; z-index: 2;border:0px'>
<P><html><BR><head><BR></head><BR><body><BR><style><BR>#x_edit,#x_edit1{<BR> height:320px;<BR> width:540px;<BR> border:1px solid #666666;</P>
<P> color:red;</P>
<P> filter:chroma(color="#0f0f0f");<BR> background-color:#f0f0f0;<BR> font-family:verdana;<BR> font-size:11px;<BR> line-height:13px;<BR> margin-left:16px;<BR> overflow:scroll;<BR> border-left:none;<BR> scrollbar-arrow-color:#666666;<BR> scrollbar-base-color:#666666;<BR> scrollbar-darkshadow-color:#f0f0f0;<BR> scrollbar-face-color:#f0f0f0;<BR> }<BR></style><BR><span onclick="abc()">試試獲得selection的top,然后加上div的scrollTop,然后除以行高</span><BR><span id="a" onclick="alert('a')">a</span><BR><span id="b" onclick="alert('b')">b</span><BR><span id="c" onclick="alert('c')"<BR>>c</span><BR><span id="d" onclick="alert('d')">d</span><BR><span id="e" onclick="alert('e')">e</span><BR><span id="f" onclick="alert('f')">f</span<BR>><BR><span id="g"<BR> onclick="alert('g')">g</span><BR><textarea id="x_edit" wrap=off></textarea><BR><div contentEditable="true" id="x_edit1" style='position:relative;line-height:13px;background-color:#f0f0f0;filter:Chroma(color=#FDFEFF);width:540px;height:320px;overflow:auto;white-space: nowrap; z-index: 2;border:0px'></div><BR><script><BR>function abc(){<BR> //s=x_edit1.innerText;<BR> var s=x_edit.value;<BR> s=s.replace(/\n/gi,"");<BR> //s=s.replace(/<(\w+)(.*?)[^<>]>/gi,"<"+aaa("$1$2")+">");<BR> s=s.replace(/<(.*?)[^<>]>/gi,"<"+aaa("$1")+">");<BR> s=s.replace(/\n/gi,"@");<BR> //var LineValue=x_edit1.innerText.split("\r")<BR> /*var LineValue=x_edit.value.split("\r")<BR>for(var i=0;i<LineValue.length;i++){<BR> LineValue[i]=LineValue[i].replace(/(".*")/gi,"$1".replace(/</gi,"\xef").replace(/>/gi,"\xff"))<BR> LineValue[i]=LineValue[i].replace(/<(.*[^<>])>/gi,"<"+"$1"+">\r")<BR> LineValue[i]=LineValue[i].replace(/\r\r/gi,"\r")<BR> LineValue[i]=LineValue[i].replace(/(".*")/gi,"$1".replace(/\xef/gi,"<").replace(/\xff/gi,">"))<BR>}*/<BR> //x_edit1.innerText=LineValue.join("");<BR> //x_edit.value=LineValue.join("");<BR> x_edit.value=s;<BR> //x_edit1.innerText=s;<BR>}<BR>function aaa(str){<BR> str=str.replace(/\r/gi," ");<BR> return str;<BR>}<BR></script><BR></body><BR></html></P>
</div>
<script>
function abc(){
var s=x_edit.innerText;
s=s.replace(/<\/?(\w+[\s\S]*?)>/gi,function(a){return a.replace(/[\r\n]/gi,"")});
x_edit.innerText=s;
}
</script>
</body>
</html>
相關(guān)文章
C#正則實(shí)現(xiàn)Ubb解析類(lèi)的代碼
C#正則實(shí)現(xiàn)Ubb解析類(lèi)的代碼2007-03-03js正則表達(dá)式學(xué)習(xí)和總結(jié)(必看篇)
下面小編就為大家?guī)?lái)一篇js正則表達(dá)式學(xué)習(xí)和總結(jié)(必看篇)。小編覺(jué)得挺不錯(cuò)的,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧,祝大家游戲愉快哦2016-11-11Web?前端常用正則校驗(yàn)規(guī)則整理(常用示例)
這篇文章主要介紹了Web前端常用正則校驗(yàn)規(guī)則,本文給大家整理一些常見(jiàn)的示例供大家學(xué)習(xí)參考,需要的朋友可以參考下2023-05-05shell腳本之正則表達(dá)式、grep、sed、awk
這篇文章主要介紹了shell腳本之正則表達(dá)式、grep、sed、awk的相關(guān)知識(shí),非常不錯(cuò),具有一定的參考借鑒價(jià)值 ,需要的朋友可以參考下2019-04-04Python爬蟲(chóng)正則表達(dá)式常用符號(hào)和方法
python語(yǔ)言雖然誕生很久,但是也是最近幾年才火起來(lái)的。在python語(yǔ)言中,我們經(jīng)常會(huì)用到python爬蟲(chóng)的正則表達(dá)式,下面小編通過(guò)本篇文章給大家介紹python爬蟲(chóng)正則表達(dá)式常用的符號(hào)和方法,以及具體用法,感興趣的童鞋快來(lái)看看吧2015-10-10javascript中使用正則表達(dá)式進(jìn)行字符串驗(yàn)證示例
我寫(xiě)的一個(gè)表達(dá)式驗(yàn)證示例:功能如下:用戶(hù)名,不能為空;密碼6為數(shù)字;密碼確認(rèn),兩次輸入密碼必須相同;身份證號(hào)碼必須是15位,或者是18位,最末尾也可以是X2013-05-05