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:更改颜色效果悬停样式的功能


- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- 失败的 Canvas 360 jquery 插件 2022-01-01
- Flexslider 箭头未正确显示 2022-01-01
- 400或500级别的HTTP响应 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01