function return_ewebeditor_value()
{
//取得編輯器中的值
var v=window.frames("eWebEditor1").window.frames("eWebEditor").document.getElementsByTagName("body")[0].innerHTML;
//下面取得去掉HTML標記的後的結果
v=v.replace(/<[^>]*>/gi,'');
//下面取得去掉
v=v.replace(/ (;)?/g,'');
//返回最後的結果
return v;
}
此function僅適用於eWebEditor編輯器.
{
//取得編輯器中的值
var v=window.frames("eWebEditor1").window.frames("eWebEditor").document.getElementsByTagName("body")[0].innerHTML;
//下面取得去掉HTML標記的後的結果
v=v.replace(/<[^>]*>/gi,'');
//下面取得去掉
v=v.replace(/ (;)?/g,'');
//返回最後的結果
return v;
}