gpt4 book ai didi

javascript - 将鼠标上的鼠标光标更改为类似 anchor 的样式

转载 作者:IT王子 更新时间:2023-10-29 02:43:24 28 4
gpt4 key购买 nike

如果我将鼠标悬停在 div 上,鼠标光标将变为 HTML anchor 中的光标。

我该怎么做?

最佳答案

假设您的 div 有一个 id="myDiv",将以下内容添加到您的 CSS。 cursor: pointer 指定光标应该是用于 anchor (超链接)的手形图标:

要添加的 CSS

#myDiv
{
cursor: pointer;
}

您可以简单地将光标样式添加到您的 div 的 HTML 中,如下所示:

<div style="cursor: pointer">

</div>

编辑:

如果您决定为此使用 jQuery,请将以下行添加到您的 $(document).ready() 或正文 onload 中:(替换 myClass 与所有你的 div 共享的类)

$('.myClass').css('cursor', 'pointer');

关于javascript - 将鼠标上的鼠标光标更改为类似 anchor 的样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7185044/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com