自己写的兼容ie和ff的在线文本编辑器类似ewebed(2)


var w=$("content").contentWindow;
w.document.designMode="on";
w.document.open();
w.document.write("<html><body bgcolor='white'></body></body>")
w.document.close();
if(sx.comm.ver=="ie"){
//w.document.body.style.lineHeight="10px";
}
w.document.onkeydown=function(){
if(sx.comm.ver=="ie"){
if(w.event.keyCode==13){
var s=w.document.selection.createRange();
s.pasteHTML("<br/>");
w.focus();
return false;
}
}
}
function wnd(){
var main=document.createElement("div");
sx.dom.setstyle(main,{
position:"absolute",
width:"100%",
height:"100%",
backgroundColor:"lightblue",
filter:"alpha(opacity=50)",
opacity:0.5
});
var body=document.createElement("div");
sx.dom.setstyle(body,{
position:"absolute",
width:"200px",
height:"250px",
backgroundColor:"green",
zIndex:1000
});
var title=document.createElement("div");
sx.dom.setstyle(title,{
width:"200px",
height:"20px",
backgroundColor:"blue",
});
var close=document.createElement("span");
sx.dom.setstyle(close,{
marginLeft:"180px",
display:"block",
width:"20px",
height:"20px",
textAlign:"center",
cursor:"pointer"
});
close.innerHTML="X";
close.onclick=function(){
main.parentNode.removeChild(main);
body.parentNode.removeChild(body);
}
title.appendChild(close);
body.appendChild(title);
var content=document.createElement("div");
sx.dom.setstyle(content,{
width:"200px",
height:"230px"
});
body.appendChild(content);
this.show=function(e){
document.body.appendChild(main);
sx.dom.setstyle(main,{
top:"0px",
left:"0px"
});
document.body.appendChild(body);
sx.dom.setstyle(body,{
top:sx.dom.top(e)+e.clientHeight+"px",
left:sx.dom.left(e)+e.clientWidth+"px",
});
}
this.close=close;
this.main=main;
this.body=body;
this.title=title;
this.content=content;
}
function bold(){
w.document.execCommand("bold",null,null);
}
function italic(){
w.document.execCommand("italic",null,null);
}
function left(){
w.document.execCommand("JustifyLeft",null,null);
}
function center(){
w.document.execCommand("Justifycenter",null,null);
}
function right(){
w.document.execCommand("Justifyright",null,null);
}
function FontName(value){
w.document.execCommand("FontName", false, value);
}
function FontSize(value){
w.document.execCommand("FontSize", false, value);
}
function inserthr(){
if(document.selection){
w.focus();
var s=w.document.selection.createRange();
s.pasteHTML("<hr/>");
}else{
w.focus();
var s=w.getSelection().getRangeAt(0);
s.insertNode(w.document.createElement("hr"));
}
}
function insertlink(){
if (document.selection) {
w.focus();
var s = w.document.selection.createRange();
}
else {
w.focus();
var s = w.getSelection().getRangeAt(0);
}
var e=sx.event.target();
var ww=new wnd();
ww.content.appendChild(document.createTextNode("请输入链接地址;"));
var link=document.createElement("input");
link.type="text";
link.size=20;
ww.content.appendChild(link);
var b=document.createElement("button");
b.innerHTML="确定";
ww.content.appendChild(b);
b.onclick=function(){
if(sx.comm.ver=="ie"){
s.pasteHTML("<a href='"https://www.jb51.net/+link.value+"'>"+s.htmlText+"</a>");
}
else{
var a=w.document.createElement("a");
a.href=link.value;
s.surroundContents(a);
}
sx.event.parseevent(ww.close,"click");
}
ww.show(e);
}
function inserttable(){
if (document.selection) {
w.focus();
var s = w.document.selection.createRange();
}
else {
w.focus();
var s = w.getSelection().getRangeAt(0);
}
var e=sx.event.target();
var ww=new wnd();
ww.content.appendChild(document.createTextNode("请输入行数;"));
var tr=document.createElement("input");
tr.type="text";
tr.size=20;
ww.content.appendChild(tr);
ww.content.appendChild(document.createElement("br"));
ww.content.appendChild(document.createTextNode("请输入列数;"));
var td=document.createElement("input");
td.type="text";
td.size=20;
ww.content.appendChild(td);
ww.content.appendChild(document.createElement("br"));
ww.content.appendChild(document.createTextNode("请输入单元格高度;"));
var height=document.createElement("input");
height.type="text";
height.size=20;
ww.content.appendChild(height);
ww.content.appendChild(document.createElement("br"));
ww.content.appendChild(document.createTextNode("请输入单元格宽度;"));
var width=document.createElement("input");
width.type="text";
width.size=20;
ww.content.appendChild(width);
ww.content.appendChild(document.createElement("br"));
var b=document.createElement("button");
b.innerHTML="确定";
ww.content.appendChild(b);
b.onclick=function(){
var l1=Number(tr.value);
var l2=Number(td.value);
var h1=Number(height.value);
var w1=Number(width.value);
ww.content.appendChild(document.createTextNode("请输入单元格高度;"));
var t=document.createElement("table");
t.border="1";
var tb=document.createElement("tbody");
t.appendChild(tb);
for(var i=0;i<l1;i++){
var tr1=document.createElement("tr");
for(var i1=0;i1<l2;i1++){
var td1=document.createElement("td");
td1.innerHTML="";
sx.dom.setstyle(td1,{
width:w1+"px",
height:h1+"px"
});
tr1.appendChild(td1);
}
tb.appendChild(tr1);
}
if(sx.comm.ver=="ie"){
s.pasteHTML(t.outerHTML);
}
else{
s.insertNode(t);
s.insertNode(document.createElement("br"));
}
sx.event.parseevent(ww.close,"click");
}
ww.show(e);
}
function color(){
var e=sx.event.target();
if (document.selection) {
w.focus();
var s = w.document.selection.createRange();
}
else {
w.focus();
var s = w.getSelection().getRangeAt(0);
}
var ww=new wnd();
var colors = ["00","33","66","99","CC","FF"];
var cp=document.createElement("span");
sx.dom.setstyle(cp,{
display:"inline-block",
width:"10px",
height:"10px",
margin:"2px"
});
for(var i1=5;i1>=0;i1--){
for(var i2=5;i2>=0;i2--){
for(var i3=5;i3>=0;i3--){
var cp1=cp.cloneNode(true);
cp1.style.backgroundColor="#" + colors[i1] + colors[i2] + colors[i3];
cp1.title="#" + colors[i1] + colors[i2] + colors[i3];
cp1.onclick=function(){
if(sx.comm.ver=="ie"){
w.focus();
s.pasteHTML("<font color='"+this.title+"'>"+s.htmlText+"</font>");
}
else{
var a=w.document.createElement("font");
a.color=this.title;
s.surroundContents(a);
}
sx.event.parseevent(ww.close,"click");
}
ww.content.appendChild(cp1);
}
}
}
ww.show(e);
}


关键是demo.html和edit.js里的代码,core.js和advance.js里的代码是我为兼容浏览器写的,本想把它扩展成一个完善的框架的,因为时间有限,就没写下去了。

编辑器还没有实现图片和文件的上传,因为需要服务器技术,所以我就没写了,可以交给读者慢慢研究。
我打算先将web放放了,开始专心于vc++的探究上,尽量能写出一个像样的程序出来,以后如果有时间我也会继续完善这个编辑器以及javascript兼容的框架。
恩,好好加油吧。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wddfyw.html