CSS and Javascript: Function to change color effects hover style(CSS 和 Javascript:更改颜色效果悬停样式的功能)
问题描述
我有一个元素,我在其中为 CSS 中的悬停状态设置了文本颜色和不同的文本颜色.我有一些javascript,所以当我单击元素时,它会改变元素的文本颜色.它工作正常,除了它也会影响悬停 CSS,我希望与预单击的悬停 CSS 保持相同.有没有办法阻止悬停 CSS 生效或设置悬停 CSS?
I have an element where I set a text color and a different text color for the hover state in the CSS. I have some javascript so that when I click the element, it changes the text color of the element. It works fine except that it also effects the hover CSS which I want to remain the same as the pre-clicked hover CSS. Is there anyway to either stop the hover css from being effected or to set the hover CSS?
http://jsfiddle.net/77zg8/
CSS:
#test {color: blue;}
#test:hover {color:green;}
HTML:
<div id="test" onClick="javascript:change()">qwerty</div>
Javascript:
Javascript:
function change() {document.getElementById("test").style.color="#cc0000";};
推荐答案
与其直接设置颜色,不如直接设置颜色更干净(使用类更有效).
Instead of setting the color directly, it would be cleaner (and more effective to use a class).
CSS:
#test {color: blue;}
#test.active {color:red;}
#test:hover {color:green;}
JavaScript:
JavaScript :
function change() {
document.getElementById("test").className='active';
}
演示
这篇关于CSS 和 Javascript:更改颜色效果悬停样式的功能的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:CSS 和 Javascript:更改颜色效果悬停样式的功能


基础教程推荐
- Bokeh Div文本对齐 2022-01-01
- Fabric JS绘制具有活动形状的多边形 2022-01-01
- fetch 是否支持原生多文件上传? 2022-01-01
- 原生拖动事件后如何获取 mouseup 事件? 2022-01-01
- 在 contenteditable 中精确拖放 2022-01-01
- Bootstrap 模态出现在背景下 2022-01-01
- npm start 错误与 create-react-app 2022-01-01
- 检查 HTML5 拖放文件类型 2022-01-01
- 即使用户允许,Gmail 也会隐藏外部电子邮件图片 2022-01-01
- 如何添加到目前为止的天数? 2022-01-01