I want to change the style of the cursor as if it were going over a link. How do I do this?
Modify the CSS cursor value by using the css() method
$('#selector').css('cursor', 'pointer');
you can play around with this
$('#divid').css('cursor','default');
for pointer
$('#divid').css('cursor','pointer');
api
using css
http://www.echoecho.com/csscursors.htm
read here for different cursor styles
and apply it
$('#selector').css('cursor', 'value');
Cursors are handled by CSS. You need something like
$('#elementid').css('cursor', 'pointer');
or for old IE browsers
$('#elementid').css('cursor', 'hand');
来源:https://stackoverflow.com/questions/5932837/how-do-i-change-the-style-of-the-cursor-with-jquery