首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

输入域字符数量展示

2012-09-17 
输入域字符数量显示onblurcheckLen(feedBack)//字数限制function checkLen(check){if(!isEmpty(docu

输入域字符数量显示
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);
}
}

热点排行