jsp中:
<textarea id="${msg.openId}" rows="2" style="display: none;height: 50;width: 99%"
onKeyUp="checkMaxInput(this)" onKeyDown="checkMaxInput(this)">
</textarea>
js中:
function checkMaxInput(txt)
{
if (txt.value.length > 666)
txt.value = txt.value.substring(0, 666);
}
原文:http://blog.csdn.net/sprita1/article/details/20750613