我在 div 上滚动。当用户滚动该 div 时,我想更改我的光标符号。对于其他页面滚动,这应该保持默认。
我怎样才能在 jQuery 或 JavaScript 中做到这一点?
jQuery
$('div:hover').css({'cursor':'whatever'});
或者
$('div').scroll(function() {
$(this).css({'cursor':'whatever'});
});
CSS
div:hover { cursor: whatever }
在此处查看光标选项:http: //www.w3schools.com/cssref/pr_class_cursor.asp
$("#MyDivsID").on('scroll', function() {
$(this).css('cursor', 'pointer'); //or whatever cursor you'd like
});