asp fck 编辑器字数统计

来源:百度知道 编辑:UC知道 时间:2024/05/12 05:57:28
我是asp的呀。 我想实现功能: 用户在输入的时候。提示用户输入的字数。
程序代码也是ASP调入的。
由于是ASP引入的。所以在本页面asp代码输出的编辑器中
不存在 <textarea > 只存在 input 和 iframe

js问题
------------------------------------------
<script>
function textCounter(obj, maxlimit) {
if (obj.length > maxlimit)
obj = obj.substring(0, maxlimit);
else
document.form1.remLen.value = maxlimit - obj.length;
}
</script>
<form name="form1">
<font color="858D56">剩余字数:</font>
<input name=remLen value=500 readonly type=text size=4 maxlength=3 style="background-color: ffffff; border: 0; color: red">
<textarea name="content" cols="45" rows="10" onPropertyChange="textCounter(form1.content.value, 500)"></textarea>
</form>