当前位置: 代码迷 >> Web前端 >> jquery设立cursor的属性改变光标的类型(形状)
  详细解决方案

jquery设立cursor的属性改变光标的类型(形状)

热度:93   发布时间:2012-11-06 14:07:00.0
jquery设置cursor的属性改变光标的类型(形状)

Jquery改变光标的样式

$("td").hover( 
    function () { 
        $(this).addClass("hover"); 
    },
    function () { 
        $(this).removeClass("hover"); 
    } 
);  //通过增加Class


$('td').hover(
    function() {
         this.style.cursor = 'pointer';
    }
);  //通过直接设置Style

?

cursor的属性值:

  相关解决方案