JQuery:悬停而不取消悬停
我什至对 jQuery 在元素上放置悬停属性的愚蠢方式感到惊讶。 看一下这个示例 CSS:
div.test
{
width: 20px;
height: 20px;
color: #000000;
background: #FFFFFF;
}
div.test:hover
{
color: #FFFFFF;
background: #CC0000;
}
如果我们想将其转换为 jQuery,我们必须输入以下内容:
$('div.test').css({
'width' : '20px',
'height' : '20px',
'color' : '#000000',
'background' : '#FFFFFF'
});
$('div.test').hover(function() {
$(this).css({
'color' : '#FFFFFF',
'background' : '#CC0000'
});
}, function() {
$(this).css({
'color' : '#000000',
'background' : '#FFFFFF'
});
});
没有更好的方法来做到这一点吗? 写明显的东西感觉很愚蠢。
先感谢您。
I'm even stated surprised about jQuery's dumb way to put a hover attribute on an element. Take a look at this sample CSS:
div.test
{
width: 20px;
height: 20px;
color: #000000;
background: #FFFFFF;
}
div.test:hover
{
color: #FFFFFF;
background: #CC0000;
}
If we'd like to convert this to jQuery, we have to type the following:
$('div.test').css({
'width' : '20px',
'height' : '20px',
'color' : '#000000',
'background' : '#FFFFFF'
});
$('div.test').hover(function() {
$(this).css({
'color' : '#FFFFFF',
'background' : '#CC0000'
});
}, function() {
$(this).css({
'color' : '#000000',
'background' : '#FFFFFF'
});
});
Arn't there any better way to do this? It feels stupid to write obvious things.
Thank you in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
你处理这个问题的方式是错误的。 你可以像这样定义一个 CSS 类
You're approaching this the wrong way. You'd define a CSS class like so
你错误地认为 jQuery 试图取代 CSS。
jQuery 不会“添加悬停标记”,它只是为 JavaScript 的悬停事件提供处理程序(IIRC 它实际上是
mouseover
/mouseout
的抽象)。 如果您想使用 JS 模拟 CSS 的悬停伪选择器,jQuery 会为您提供易于使用的事件处理程序绑定,让您轻松实现这一点。Where you're mistaken is in thinking jQuery tries to replace CSS.
jQuery doesn't "add a hover tag", it merely provides handlers for JavaScript's hover event (IIRC it's actually an abstraction of
mouseover
/mouseout
). If you want to emulate CSS's hover pseudo-selector with JS, jQuery makes it easy for you by giving you an easy-to-use event handler binding.另外,您也可以编写以下简单的插件来执行您想要的操作(自动取消悬停):
然后您可以像这样使用它:
但是 Praveen 的答案肯定是要走的路。
Also you could just write the following simple plugin to do what you want (automatic unhovering):
You could then use it like this:
However Praveen's answer is defenitly the way to go.
我想另一种方法如下:
然后,制作一个简单的对象包装器来保存您想要使用的属性
。这样,至少您可以将样式定义保留在一个地方。
I suppose another way to go would be the following:
Then, make a simple object wrapper to hold the properties you want to use
This way, at least you keep the style definitions in one place.