.len_box{width:205px;height:12px;margin-top:10px;border:solid #ccc 1px;}
.len_color{width:1%;background:#F00;height:12px;}
.text{width:200px;height:22px;}
$(function(){
$(".text").keyup(function(){
var Max = 20;//input_maxlength
$(".text").attr("maxlength",Max);
var len = $(".text").val().length;
var Width = (len/Max)*parseInt($(".len_box").css("width"));
$(".len_color").css({"width":Width})
if(Width<20){
$(".len_color").css({"background":"#F00"})
}else if(20<=Width && Width<50){
$(".len_color").css({"background":"#F90"})
}else if(Width>=50){
$(".len_color").css({"background":"#6F3"})
}
})
})
请先刷新页面,再输入字符查看效果: