摘要: function SetTextAreaMaxLength(controlId,length){ // JScript File for TextArea // Keep user from entering more than maxLength characters function doKeypress(control,length){ maxLength = length; value = control.value; if(maxLength && value.length > maxLength-1){ ... 阅读全文
posted @ 2013-12-08 01:36 star丶清影 阅读(472) 评论(0) 推荐(0) 编辑