先給大家看看效果: 效果介紹: 鼠标滑过进度条改变进度值.兼容性: 可完美兼容IE6,IE7,IE8,Chrome,Firefox代码: 复制代码 代码如下: <BR>#prg{ <BR>font-size:12px; <BR>height:100%; <BR>margin-bottom:3px; <BR>overflow:hidden; <BR>color:#2C2C2C; <BR>font-family:Arial,Tahoma,"Bitstream Vera Sans",sans-serif; <BR>} <BR>#prg .txt{ <BR>min-width:50px;width:auto;float:left; <BR>} <BR>#prg .num{ <BR>color: #656565; <BR>font-style:normal; <BR>margin:0 6px; <BR>} <BR>#prg .load{ <BR>background-color:#F6F5F5; <BR>border:1px solid #BBBBBB; <BR>height:10px; <BR>float:left; <BR>margin-top:1px; <BR>position:relative; <BR>} <BR>#prg #p{ <BR>background-color:#F9AE3D; <BR>border:1px solid #E87F16; <BR>font-size:1px; <BR>min-height:8px; <BR>max-height:10px; <BR>height:10px; <BR>left:-1px; <BR>position:absolute; <BR>top:-1px; <BR>} <BR> 普通 4324323 <BR>function xPrg(i,e){ <BR>var i=$(i); <BR>var p=i.getElementById('p'); <BR>if(!i || !p){return false;} <BR>i.setStyle('cursor','pointer'); <BR>i.onclick=function(){ <BR>alert('点我干啥?'); <BR>} <BR> var ex=e.clientX; //鼠标现在的位置 <BR> var s=p.getPosition().x.toInt(); //原始x偏移量 <BR> var bw=i.getStyle('width').toInt(); //进度条盒子宽度(px) <BR> var nw=ex-s;nw=(nw>bw)?bw:nw;nw=(nw<1)?0:nw; //鼠标所在位置的宽度 <BR> p.setStyle('width',nw+'px'); <BR> var x=bw/5; <BR>if(nw>0 && nw<=x){ <BR>$('prg').getElement('.txt').set('text','非常差'); <BR>}else if(nw>x && nw<=(x*2)){ <BR>$('prg').getElement('.txt').set('text','很差'); <BR>}else if(nw>x && nw<=(x*3)){ <BR>$('prg').getElement('.txt').set('text','普通'); <BR>}else if(nw>x && nw<=(x*4)){ <BR>$('prg').getElement('.txt').set('text','很好'); <BR>}else if(nw>x && nw<=(x*5)){ <BR>$('prg').getElement('.txt').set('text','非常好'); <BR>} <BR>} <BR>