修改發(fā)貼的編輯功能
更新時(shí)間:2007年03月07日 00:00:00 作者:
以下代碼可以做到在光標(biāo)處插入代碼,如果有選擇區(qū)域,則會(huì)使用選擇區(qū)域生效。
1、vbcode.js 文件中
替換函數(shù) vbcode 為下面內(nèi)容
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();
}
替換函數(shù) fontformat 為下面內(nèi)容
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();
}
替換函數(shù) smilie 為下面內(nèi)容
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 文件
查找函數(shù) insertTag 替換成下面內(nèi)容
function insertTag(MyString)
{
bbopen=''
bbclose='';
if (MM_findObj('message').createTextRange && MM_findObj('message').caretPos) {
var text = bbopen + bbclose ;
var caretPos = MM_findObj('message').caretPos;
if(caretPos.text.length > 0)
caretPos.text = bbopen + caretPos.text + bbclose;
else
caretPos.text = text;
} else {
MM_findObj('message').value += bbopen + bbclose;
}
MM_findObj('message').focus();
return;
}
3、修改 editpost、newthread 和 newreply 模板
查找
$postinfo[message]
替換成
$postinfo[message]
1、vbcode.js 文件中
替換函數(shù) vbcode 為下面內(nèi)容
復(fù)制代碼 代碼如下:
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();
}
替換函數(shù) fontformat 為下面內(nèi)容
復(fù)制代碼 代碼如下:
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();
}
替換函數(shù) smilie 為下面內(nèi)容
復(fù)制代碼 代碼如下:
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();
}
加入下面代碼
復(fù)制代碼 代碼如下:
function storeCaret(textEl) {
if (textEl.createTextRange)
textEl.caretPos = document.selection.createRange().duplicate();
}
2、color.js 文件
查找函數(shù) insertTag 替換成下面內(nèi)容
復(fù)制代碼 代碼如下:
function insertTag(MyString)
{
bbopen=''
bbclose='';
if (MM_findObj('message').createTextRange && MM_findObj('message').caretPos) {
var text = bbopen + bbclose ;
var caretPos = MM_findObj('message').caretPos;
if(caretPos.text.length > 0)
caretPos.text = bbopen + caretPos.text + bbclose;
else
caretPos.text = text;
} else {
MM_findObj('message').value += bbopen + bbclose;
}
MM_findObj('message').focus();
return;
}
3、修改 editpost、newthread 和 newreply 模板
查找
$postinfo[message]
替換成
$postinfo[message]
相關(guān)文章
JavaScript進(jìn)制轉(zhuǎn)換實(shí)現(xiàn)方法解析
這篇文章主要介紹了JavaScript進(jìn)制轉(zhuǎn)換實(shí)現(xiàn)方法,結(jié)合實(shí)例形式分析了JavaScript進(jìn)制轉(zhuǎn)換中十進(jìn)制與其他進(jìn)制轉(zhuǎn)換、以及隨機(jī)顏色生成相關(guān)操作技巧,需要的朋友可以參考下2020-01-01關(guān)于uniApp editor微信滑動(dòng)問題
這篇文章主要介紹了關(guān)于uniApp editor微信滑動(dòng)問題,本文給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2021-01-01JavaScript中常見的高階函數(shù)總結(jié)
JavaScript的函數(shù)其實(shí)都指向某個(gè)變量,既然變量可以指向函數(shù),函數(shù)的參數(shù)能接收變量,那么一個(gè)函數(shù)就可以接收另一個(gè)函數(shù)作為參數(shù),這種函數(shù)就稱之為高階函數(shù),這篇文章主要給大家介紹了關(guān)于JavaScript中常見的高階函數(shù),需要的朋友可以參考下2022-02-02IE和Firefox下javascript的兼容寫法小結(jié)
學(xué)習(xí)js的朋友必須要知道或了解的知識(shí)2008-12-12利用JScript中運(yùn)算符"||"和"&&"的特殊特性實(shí)現(xiàn)代碼精
利用JScript中運(yùn)算符"||"和"&&"的特殊特性實(shí)現(xiàn)代碼精簡(jiǎn)...2007-03-03JavaScript實(shí)現(xiàn)瀑布流以及加載效果
這篇文章主要為大家詳細(xì)介紹了JavaScript實(shí)現(xiàn)瀑布流以及加載效果的相關(guān)資料,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2017-02-02