给input 加上这个事件 onmousewheel="return false;"
或者用JQ全局设置input:
$(function(){
$(":input").bind("mousewheel",function(){
return false;
});
});