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);
}
}
//字数限制
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);
}
}