摘要:
<script>function checkLength(obj,maxlength){ if(obj.value.length > maxlength){ obj.value = obj.value.substring(0,maxlength); }}</script><textarea name="content" cols="" rows="8" onpropertychange="checkLength(this,140);" oninput="checkLen 阅读全文