Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
基本上我想让普通文本可点击,但是点击鼠标徽标会弹出!我可以使用“onclick”使文本可点击,但这不会像点击徽标一样提供悬停的文本。
对不起我的菜鸟
使用 CSS 属性cursor: pointer;来达到预期的效果。
cursor: pointer;
编辑:如果您想在用户将鼠标悬停在文本上时应用其他样式,则添加选择器:hover以在鼠标悬停期间将伪选择器包含在样式中。
:hover
您只需在父元素上设置光标属性。
span { cursor: pointer; }
工作示例:http: //jsfiddle.net/XxrMM/