文本html不能编辑器,有关编写html文本编辑器的遇到的问题

最近由于要进行编辑CMS,遇到一些问题,就是html文本编辑器的问题,我们要写新闻,就一定用到它。但是网上开源的都不尽人意,所以我想根据自己需求,编写属于我自己的html文本编辑器。

我使用的是编写文本放在一个页面,对文本的编辑放在它的父框架中,我要对文本进行操作就要调用到内层的那个框架。

编写文本的网页  richTextEditor.htm

调用js代码:texteditor.js

window.οnlοad=initEditor;

function initEditor()

{

textEdit.document.designMode="On";

textEdit.document.open();

textEdit.document.write("");

textEdit.document.close();

}

function execCommand(command) {

if (format=="HTML") {

var edit = textEdit.document.selection.createRange();

if (arguments[1]==null)

edit.execCommand(command);

else

edit.execCommand(command,false, arguments[1]);

edit.select();

textEdit.focus();

}

}

进行编辑的页面  Editor.aspx

copy.gif

调用js  editor.js

function Copy(){

myEditor.focus();

doFormat("Copy");

}

//重点在这里

function doFormat(what) {

//myEditor.setFocus();

//var eb = document.all.editbar2;

myEditor.frames.textEdit.execCommand(what);

}

我怎么编写这段代码?

。。。。。。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值