我有一个应用程序,它使用几个不同的游标(指针,十字准线等),具体取决于用户将鼠标悬停在什么位置。是否可以轻松引用在单击事件的确切时间使用的光标?
答案 0 :(得分:2)
这可以使用JQuery:
$('*').mouseenter(function(){
/*Instead of "*" You can use a class/id selector if you wish to do this for a particular element*/
/*You can replace mouseenter() with click() */
var cursorType = $(this).css('cursor') ;
/*you can do whatever you want here */
});
如果您想更改光标,
$('#selector').css('cursor', 'pointer');