Answers:
$('selector').css('cursor', 'pointer'); // 'default' to revert
我知道每个原始问题可能会使您感到困惑,但是“手指”光标实际上称为“指针”。
普通的箭头光标只是“默认”。
$('selector').css('cursor', 'auto');
当将鼠标移出指针区域时,我结合使用了此功能以剥离样式。CSS类可能更干净... $('...').addClass('someclass')
和$('...').removeClass('someclass')
$('body').css( 'cursor', 'url(openhand.cur) 4 4, move;' );
它似乎不起作用。我不知道这是jquery还是chrome中的错误。还没有在其他浏览器上对此进行测试。
更新!新功能和改进功能!查找插件@ GitHub!
另一个要注意的是,虽然该方法很简单,但我创建了一个jQuery插件(在此jsFiddle中找到,只是在注释行之间复制和过去的代码),使更改任何元素上的光标变得简单$("element").cursor("pointer")
。
但这还不是全部!现在就采取行动,你就会拿到手功能position
及ishover
不收取额外费用!是的,2个非常方便的光标功能...免费!
它们的工作原理如演示中所示:
$("h3").cursor("isHover"); // if hovering over an h3 element, will return true,
// else false
// also handy as
$("h2, h3").cursor("isHover"); // unless your h3 is inside an h2, this will be
// false as it checks to see if cursor is hovered over both elements, not just the last!
// And to make this deal even sweeter - use the following to get a jQuery object
// of ALL elements the cursor is currently hovered over on demand!
$.cursor("isHover");
也:
$.cursor("position"); // will return the current cursor position as { x: i, y: i }
// at anytime you call it!
物资有限,所以请立即行动!
如何将光标更改为手指(例如单击链接)而不是常规指针?
使用CSS属性非常容易实现cursor
,jQuery
不需要。
您可以在以下内容中了解更多信息:CSS cursor property
和cursor - CSS | MDN
.default {
cursor: default;
}
.pointer {
cursor: pointer;
}
<a class="default" href="#">default</a>
<a class="pointer" href="#">pointer</a>
非常简单
的HTML
<input type="text" placeholder="some text" />
<input type="button" value="button" class="button"/>
<button class="button">Another button</button>
jQuery的
$(document).ready(function(){
$('.button').css( 'cursor', 'pointer' );
// for old IE browsers
$('.button').css( 'cursor', 'hand' );
});