function cgimg(o){
var zoom=parseInt(o.style.zoom, 10)||100;zoom+=event.wheelDelta/12;if (zoom>0) o.style.zoom=zoom+'%';
return false;
}
这个函数实现的是什么功能?"parseInt(o.style.zoom, 10)||100"这段代码是什么意思?parseInt是干什么用的?
"event.wheelDelta"返回的是鼠标的什么事件?返回值是什么???
谢谢