fckeidtor自动统计输入的字符数(IE)
文本框FCKeditor编辑器,应该没问题的。
接受uff1a
复制代码代码如下所示:
短小的故事
(100个汉字)
当前单词数:
JS代码:
复制代码代码如下所示:
功能fckeditor_oncomplete(editorinstance)
{
无功oeditor = fckeditorapi.getinstance('fckprddescription);
oeditor。editordocument。体onkeyup =函数()。
{
如果(文件全部)
{
$(lblshowtextlength)。InnerText = oeditor.editordocument.body.innertext.length;
}
其他的
{
VAR r = oeditor.editordocument.createrange();
r.selectnodecontents(oeditor。editordocument。体);
$(lblshowtextlength)。InnerText = r.tostring(长度);
}
如果(parseInt($(lblshowtextlength)。InnerText)> 100)
{
警报()现在已经到达文本的100,请不要继续输入!;
oeditor。editordocument。身体。innerText = oeditor.editordocument.body.innertext.substring(0100);
$(lblshowtextlength)。InnerText = oeditor.editordocument.body.innertext.length;
}
/ / $(DDD价值= oeditor.editordocument.body.innerhtml);
}
If (document.getElementById (hidStatus).Value== Cancel)
{
editorinstance。editordocument。设计模式=关闭;
}
}
uff1a示范
提示输入多余的100个字符。
单击{ }自动截取100个字符