//ie textarea不支持maxlength
$('#verify_note').bind('input propertychange', function() {
if (this.value.length > 100) {
this.value = this.value.substr(0, 100);
}
});
2023-12-01 17:27:52
//ie textarea不支持maxlength
$('#verify_note').bind('input propertychange', function() {
if (this.value.length > 100) {
this.value = this.value.substr(0, 100);
}
});