分享
 
 
 

UBB,剪贴板,textRange及其他

王朝other·作者佚名  2006-11-24
窄屏简体版  字體: |||超大  

这是一个给新手学习代码的帖子,包含以下内容:

如何使用UBB代码;

如何用js与剪贴板交互;

如何使用textRange对象;

如何使用自定义的快捷键操作;

如何自动随窗口大小调整页面内容尺寸;

正则表达式的使用等等.

请仔细阅读代码,有问题请提问,目前代码开发完成度80%,IE only

运行代码框

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "standards-compliant mode" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html>

<head>

<meta http-equiv="content-type" content="text/html; charset=gb2312" />

<title>Blue Idea UBB Code Edit</title>

<style>

* {

margin:0px;

padding:0px;

}

html, body {

background-color:buttonface;

width:100%;

height:100%;

overflow:hidden;

border-width:0px;

font-size:13px;

font-family:Verdana Arial 宋体;

color:#333333;

cursor:default;

}

input {border-width:1px;}

#divMain {

overflow:hidden;

}

#divTools {

width:100%;

height:20px;

line-height:20px;

overflow:hidden;

border-bottom:1px solid buttonshadow;

margin:0px;

padding:0px;

padding-left:10px;

background-color:buttonface;

color:black;

}

#divTools label { font-weight:bold;float:left;padding-left:15px;padding-right:15px;}

#divTools a {

display:block;

float:left;

height:20px;

padding-left:15px;

padding-right:15px;

line-height:20px;

text-align:center;

overflow:hidden;

color:black;

text-decoration:none;

}

#divTools a:hover {background-color:gold;color:black;}

#divTools a:active {background-color:navy;color:white;}

#divContent, #txtContent {

border:1px inset buttonface;

width:94%;

height:400px;

overflow:auto;

padding:5px;

margin:2px 15px 0px 15px;

background-color:white;

color:black;

display:none;

}

#txtContent {

font-size:14px;

border-width:1px;

display:block;

}

.UBB_code {

border:1px solid #555;

padding:10px;

margin:10px;

width:500px;

background-color:#DDD;

font-size:13px;

font-weight:normal;

color:black;

}

.UBB_html {

padding:4px;

width:350px;

height:200px;

font-size:13px;

font-weight:normal;

color:black;

}

.UBB_html_button {

width:100px;

height:22px;

line-height:18px;

border-width:2px;

margin:0px;

}

</style>

<script type="text/javascript">

var txtContent, divContent, viewButton01, viewButton02, dtf;

var strHTMLStart="<div><textarea class=\"UBB_html\">";

var strHTMLEnd="<\/textarea><input type=\"button\" value=\"运行代码\" onclick=\"UBB_runCode(this);\" class=\"UBB_html_button\" \/><\/div>";

var strCodeStart="<div class=\"UBB_code\">";

var strCodeEnd="<\/div>";

function init(){

txtContent=document.getElementById("txtContent");

divContent=document.getElementById("divContent");

viewButton01=document.getElementById("viewButton01");

viewButton02=document.getElementById("viewButton02");

dtfFrame=document.createElement("iframe");

dtfFrame.frameBorder="0px";

dtfFrame.style.width="0px";

dtfFrame.style.height="0px";

document.body.appendChild(dtfFrame);

dtf=window.frames[window.frames.length-1];

dtf.location.href="about:blank";

window.onresize=switchModel;

txtContent.onkeydown=chkKey;

switchModel(0);

}

function switchModel(id){

// 重新计算输入区域大小

txtContent.style.width=document.body.clientWidth-50+"px";

txtContent.style.height=document.body.clientHeight-50+"px";

divContent.style.width=document.body.clientWidth-50+"px";

divContent.style.height=document.body.clientHeight-50+"px";

if(id==0){ // 转到代码视图

divContent.style.display="none";

txtContent.style.display="block";

viewButton01.style.backgroundColor="navy";

viewButton01.style.color="white";

viewButton02.style.backgroundColor="";

viewButton02.style.color="";

txtContent.focus();

}else if(id==1){ // 转到预览视图

divContent.style.display="block";

txtContent.style.display="none";

divContent.innerHTML=UBB2HTML(txtContent.value);

viewButton02.style.backgroundColor="navy";

viewButton02.style.color="white";

viewButton01.style.backgroundColor="";

viewButton01.style.color="";

divContent.focus();

}

}

function HTML2UBB(strHTML){

var re=htmlDecode(strHTML);

re=re.replace(/<(\/?)strong>/ig,"[$1b]");

re=re.replace(/<(\/?)b>/ig,"[$1b]");

re=re.replace(/<(\/?)em>/ig,"[$1i]");

re=re.replace(/<(\/?)i>/ig,"[$1i]");

re=re.replace(/< *(\/?) *div[\w\W]*?>/ig,"\r\n");

re=re.replace(/< *img +[\w\W]*?src=["]?([^">\r\n]+)[\w\W]*?>/ig,"

");

re=re.replace(/< *a +[\w\W]*?href=["]?([^">\r\n]+)[\w\W]*?>([\w\W]*?)< *\/ *a *>/ig,"1]$2");

re=re.replace(/<script[\w\W]+?<\/script>/ig,"");

re=re.replace(/<[\w\W]*?>/ig,"");

re=re.replace(/(\r\n){2,}/g,"\r\n");

return(re);

}

function UBB2HTML(strUBB){

var re=strUBB;

// 转换HTML实体

re=htmlEncode(re);

// 屏蔽 html 和 code 中的 UBB 转意符

re=re.replace(/(\[html\])([\w\W]*?)(\[\/html\])/ig,UBB2HTML_escapeUBB);

re=re.replace(/(\[code\])([\w\W]*?)(\[\/code\])/ig,UBB2HTML_escapeUBB);

// 转换UBB代码为HTML代码

re=re.replace(/\[b\]/ig,"<b>").replace(/\[\/b\]/ig,"<\/b>");

re=re.replace(/\[i\]/ig,"<i>").replace(/\[\/i\]/ig,"<\/i>");

re=re.replace(/\[code\]/ig,strCodeStart).replace(/\[\/code\]/ig,strCodeEnd);

re=re.replace(/\[html\]/ig,strHTMLStart).replace(/\[\/html\]/ig,strHTMLEnd);

re=re.replace(/\[size=(\d)\]/ig,UBB2HTML_fontSize).replace(/\[\/size\]/ig,"<\/span>");

re=re.replace(/\[img\]/ig,"<img src=\"").replace(/\[\/img\]/ig,"\" \/>");

re=re.replace(/\[url\]([\w\W]+?)\[\/url\]/ig,"<a href=\"$1\">$1<\/a>");

re=re.replace(/\]+?)]/ig,UBB2HTML_url).replace(/[/url]/ig,"</a>");

// 还原 html 和 code 中的 UBB 转意符

re=re.replace(/\[/g,"[").replace(/\]/g,"]");

return(re);

}

function UBB2HTML_escapeUBB(strAll,strS1,strS2,strS3){

switch(strS1.toLowerCase()){

case "[html]":

return(strS1+htmlDecode(strS2.replace(/[/g,"\[").replace(/]/g,"\]"))+strS3);

break;

case "[code]":

return(strS1+strS2.replace(/[/g,"\[").replace(/]/g,"\]")+strS3);

break;

}

}

function htmlEncode(strS){

return(strS.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/ /g,"&nbsp;").replace(/rn/g,"<br/>"));

}

function htmlDecode(strS){

return(strS.replace(/<br/?>/ig,"rn").replace(/&nbsp;/ig," ").replace(/&gt;/ig,">").replace(/&lt;/ig,"<").replace(/&amp;/ig,"&"));

}

function UBB_runCode(obj){

theObj=obj;

while(theObj=theObj.previousSibling)if(String(theObj.tagName).toLowerCase()=="textarea"){

newWin=open();

newWin.document.open();

newWin.document.clear();

newWin.document.write(theObj.value);

newWin.document.close();

return(true);

}

}

function UBB2HTML_fontSize(str,i){

return("<span style="font-size:"+(7+i*4)+"px;">");

}

function UBB2HTML_url(str,strURL){

return("<a href=""+strURL+""/>");

}

function chkKey(){

var eK=keyChar().toLowerCase();

switch(eK){

case "tab":

setUBB(eK);return(false);

break;

case "b": case "+": case "-":

if(event.ctrlKey){

setUBB(eK);return(false);

}

break;

case "c": case "h": case "i":

if(event.ctrlKey&&event.shiftKey){

setUBB(eK);return(false);

}

break;

case "v":

if(event.ctrlKey&&event.shiftKey){

chkPaste();retu

[1] [url=http://www.chinamx.com.cn/Article/websj/javascripjishu/200605/20060517125302_4178_2.html][2] [3] 下一页

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有