修改發貼的編輯功能
2024-09-06 12:43:14
供稿:網友
以下代碼可以做到在光標處插入代碼,如果有選擇區域,則會使用選擇區域生效。
1、vbcode.js 文件中
替換函數 vbcode 為下面內容
代碼如下:
function vbcode(theform,vbcode,prompttext) {
if (theform.message.createTextRange && theform.message.caretPos) {
var caretPos = theform.message.caretPos;
if(caretPos.text.length > 0)
caretPos.text = "["+vbcode+"]" + caretPos.text + "[/"+vbcode+"]";
else
caretPos.text = "["+vbcode+"]" + "[/"+vbcode+"]";
}
theform.message.focus();
}
替換函數 fontformat 為下面內容
代碼如下:
function fontformat(theform,thevalue,thetype) {
if (theform.message.createTextRange && theform.message.caretPos) {
var caretPos = theform.message.caretPos;
if(caretPos.text.length > 0)
caretPos.text = "["+thetype+"="+thevalue+"]" + caretPos.text + "[/"+thetype+"]";
else
caretPos.text = "["+thetype+"="+thevalue+"]" + "[/"+thetype+"]";
}
theform.sizeselect.selectedIndex = 0;
theform.fontselect.selectedIndex = 0;
theform.colorselect.selectedIndex = 0;
theform.message.focus();
}
替換函數 smilie 為下面內容
代碼如下:
function smilie(thesmilie) {
// inserts smilie text
if (document.vbform.message.createTextRange && document.vbform.message.caretPos) {
var caretPos = document.vbform.message.caretPos;
caretPos.text = thesmilie;
}
document.vbform.message.focus();
}
加入下面代碼
代碼如下:
function storeCaret(textEl) {
if (textEl.createTextRange)
textEl.caretPos = document.selection.createRange().duplicate();
}
2、color.js 文件
查找函數 insertTag 替換成下面內容
代碼如下:
function insertTag(MyString)
{
bbopen=''
bbclose='';
if (MM_findObj('message').createTextRange && MM_findObj('message').caretPos) {
var text = bbopen + bbclose ;