How do I change the style of the cursor with JQuer

2019-01-25 02:40发布

问题:

I want to change the style of the cursor as if it were going over a link. How do I do this?

回答1:

Modify the CSS cursor value by using the css() method

$('#selector').css('cursor', 'pointer');

Demo : http://jsfiddle.net/jomanlk/H6Nta/



回答2:

you can play around with this

$('#divid').css('cursor','default');

for pointer

$('#divid').css('cursor','pointer');

api

http://api.jquery.com/css/



回答3:

using css

http://www.echoecho.com/csscursors.htm

read here for different cursor styles

and apply it

$('#selector').css('cursor', 'value');


回答4:

Cursors are handled by CSS. You need something like

$('#elementid').css('cursor', 'pointer');

or for old IE browsers

$('#elementid').css('cursor', 'hand');