在style中添加cursor:pointer 實現鼠標懸停變成小手樣式
先來一個示例
<div style="float:right"> <a class="dropdown-toggle" style="float:right;padding-right:30px;cursor:pointer" ng-click="checked(1)"> <i style="font-size:small" class="fa fa-fw fa-plus"></i> <span style="font-size:small">New Task</span> </a> </div>
其他參數:
cursor語法:
cursor : auto | crosshair | default | hand | move | help | wait | text | w-resize |s-resize | n-resize |e-resize | ne-resize |sw-resize | se-resize | nw-resize |pointer | url (url)
另:
cursor:hand也是表示文本選擇效果
cursor: url("小圖片地址") /* 設置鼠標指針默認為一個小圖片 */