`
heikehuan
  • 浏览: 5776 次
  • 性别: Icon_minigender_1
  • 来自: 孝感
社区版块
存档分类
最新评论

输入域字符数量显示

    博客分类:
  • js
阅读更多
onblur="checkLen('feedBack');"

//字数限制
function checkLen(check){
if(!isEmpty(document.IntegrationForm.feedBack.value)&&check=="feedBack"){

var feedBack = document.IntegrationForm.feedBack.value;
document.IntegrationForm.feedBack.value = feedBack.substring(0,200);
}
if(!isEmpty(document.IntegrationForm.comments.value)&&check=="comments"){

var comments = document.IntegrationForm.comments.value;
document.IntegrationForm.comments.value = comments.substring(0,200);
}
}
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics