<p >记录下js处理ubb代码的方法:</p><ol class=" list-paddingleft-2"><li><p>String.prototype.UBB=function()<br/>{<br/>varstr=this;<br/>str=str.replace(/[br]/ig,&quot;&lt;br/&gt;&quot;);/*回车*/<br/>str=str.replace(/[u](.+?)[/u]/ig,&quot;&lt;u&gt;$1&lt;/u&gt;&quot;);/*下划线*/<br/>str=str.replace(/[i](.+?)[/i]/ig,&quot;&lt;i&gt;$1&lt;/i&gt;&quot;);/*斜体*/<br/>str=str.replace(/[b](.+?)[/b]/ig,&quot;&lt;b&gt;$1&lt;/b&gt;&quot;);/*粗体*/<br/>str=str.replace(/[QUOTE](.+?)[/QUOTE]/ig,&quot;&lt;BLOCKQUOTE&gt;&lt;fontsize=2face=&quot;Verdana,Arial&quot;&gt;引用:&lt;/font&gt;&lt;HR&gt;$1&lt;HR&gt;&lt;/BLOCKQUOTE&gt;&quot;);/*引用*/<br/>str=str.replace(/[red](.+?)[/red]/ig,&quot;&lt;FONTCOLOR=&quot;#ff0000&quot;&gt;$1&lt;/FONT&gt;&quot;);/*红色字*/<br/>str=str.replace(/[gray](.+?)[/gray]/ig,&quot;&lt;FONTCOLOR=&quot;#77ACAC&quot;&gt;$1&lt;/FONT&gt;&quot;);/*灰色字*/<br/>str=str.replace(/[green](.+?)[/green]/ig,&quot;&lt;FONTCOLOR=&quot;#77ACAC&quot;&gt;$1&lt;/FONT&gt;&quot;);/*绿色字*/<br/>str=str.replace(/[blue](.+?)[/blue]/ig,&quot;&lt;FONTCOLOR=&quot;#0055ff&quot;&gt;$1&lt;/FONT&gt;&quot;);/*蓝色字*/<br/>str=str.replace(/[color=(.+?)](.+?)[/color]/ig,&quot;&lt;FONTCOLOR=&quot;$1&quot;&gt;$2&lt;/FONT&gt;&quot;);/*任何颜色*/<br/>str=str.replace(/[EMAIL](S+@S+?)[/EMAIL]/ig,&quot;&lt;AHREF=&quot;mailto:$1&quot;&gt;$1&lt;/A&gt;&quot;);/*邮件*/<br/>str=str.replace(/[URL](http://S+?)[/URL]/ig,&quot;&lt;AHREF=&quot;$1&quot;TARGET=_blank&gt;$1&lt;/A&gt;&quot;);/*链接http://*/<br/>str=str.replace(/[URL](S+?)[/URL]/ig,&quot;&lt;AHREF=&quot;http://$1&quot;TARGET=_blank&gt;$1&lt;/A&gt;&quot;);/*链接*/<br/>str=str.replace(/[marquee](.+?)[/marquee]/ig,&quot;&lt;marqueescrollamount=&quot;3&quot;onmouseover=&quot;javascript:this.stop()&quot;onmouseout=&quot;javascript:this.start()&quot;&gt;$1&lt;/marquee&gt;&quot;);/*滚动*/<br/>str=str.replace(/[IMGurl=(http://S+?)](http://S+?)[/IMGurl]/ig,&quot;&lt;ahref=&quot;$1&quot;target=_blank&gt;&lt;IMGSRC=&quot;$2&quot;border=0onload=&quot;javascript:if(this.width&gt;screen.width-366)this.width=screen.width-366&quot;/&gt;&lt;/a&gt;&quot;);/*带图片链接http://*/<br/>str=str.replace(/[IMGurl=(S+?)](S+?)[/IMGurl]/ig,&quot;&lt;ahref=&quot;http://$1&quot;target=_blank&gt;&lt;IMGSRC=&quot;http://$2&quot;border=0onload=&quot;javascript:if(this.width&gt;screen.width-366)this.width=screen.width-366&quot;/&gt;&lt;/a&gt;&quot;);/*带图片链接*/<br/>str=str.replace(/[IMG](S+?)[/IMG]/ig,&quot;&lt;IMGSRC=&quot;$1&quot;/&gt;&quot;);/*图片*/<br/>returnstr;<br/>}</p></li></ol><p >使用时就直接</p><ol class=" list-paddingleft-2"><li><p>str=str.UBB();</p></li></ol>
T:0.007134s,M:247.01 KB
返回顶部 留言