如何将光标样式设置为不带 href 的链接的指针?
方法 1:对链接使用 CSS 类
创建了一个 CSS 类来更改光标属性。 cursor属性用于指定当鼠标指向元素时要显示的鼠标光标。在此属性中使用“指针”值会将光标更改为指示链接的“指针”。
然后可以在没有任何 href 属性的任何链接上使用此类来显示指针。
句法:
.pointer-link {
cursor: pointer;
}
例子:
How to set cursor style
to pointer for links without href ?
GeeksforGeeks
How to set cursor style to
pointer for links without href ?
The link below
has the cursor style set to pointer.
Example link
输出:
方法二:使用每个链接的onmouseover事件改变样式
每当鼠标指针移到元素或其子元素上时,都会触发onmouseover事件。访问元素的样式属性并更改光标属性。
cursor 属性用于指定鼠标光标指向元素时要显示的光标。在此属性中使用“指针”值会将光标更改为指示链接的指针。
此事件可用于没有任何 href 属性的任何链接以显示指针。
句法: