我想滾動div的內容與mousewheel jquery插件。我有這個,但它不工作。有什麼想法嗎?jquery mousewheel
$(function() {
$('#contentBox').bind('mousewheel', function(event, delta) {
if (delta > 0) {
$('#contentBox').css('top', parseInt($('#contentBox').css('top'))+40);
} else {
$('#contentBox').css('top', parseInt($('#contentBox').css('top'))-40);
}
return false;
});
});
真正的答案:http://stackoverflow.com/questions/8886281/event-wheeldelta-returns-undefined?lq=1 – 2012-12-21 21:34:44