如何在事件上更改鼠标光标

如何在事件上更改鼠标光标

本文介绍了Jquery,如何在事件上更改鼠标光标的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想更改事件上的鼠标指针,但它没有改变。调试器显示事件正在触发,但代码也没有任何问题,是否有任何问题?

  .top = $(' #rootDiv _' + root); 

.top.mouseenter( function (){
this .top.style.cursor = pointer;
});
解决方案




I want to change the mouse pointer on an event but it is not changing. Debugger shows that the event is firing but there is also not any problem with code there, is any?

this.top = $('#rootDiv_' + root);

this.top.mouseenter(function () {
            this.top.style.cursor = "pointer";
        });
解决方案




这篇关于Jquery,如何在事件上更改鼠标光标的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 02:30