JQuery:悬停而不取消悬停

发布于 2024-07-25 03:29:39 字数 686 浏览 4 评论 0原文

我什至对 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

新一帅帅 2024-08-01 03:29:39

你处理这个问题的方式是错误的。 你可以像这样定义一个 CSS 类

.highlighted
{
   color: #FFFFFF;
   background: #CC0000;
}

$('div.test').hover(function() {
    $(this).addClass('highlighted');
}, function() {
    $(this).removeClass('highlighted');
});

You're approaching this the wrong way. You'd define a CSS class like so

.highlighted
{
   color: #FFFFFF;
   background: #CC0000;
}

$('div.test').hover(function() {
    $(this).addClass('highlighted');
}, function() {
    $(this).removeClass('highlighted');
});
若能看破又如何 2024-08-01 03:29:39

你错误地认为 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.

画尸师 2024-08-01 03:29:39

另外,您也可以编写以下简单的插件来执行您想要的操作(自动取消悬停):

$.fn.easyHover = function(cssProps){
   return this.each(function(){
       var $t = $(this);
       var oldProps = {};
       for(x in cssProps)
          oldProps[x] = $t.css(x);
       $t.hover(function(){
          $(this).css(cssProps);
       }, function(){
          $(this).css(oldProps);
       });
   }
}

然后您可以像这样使用它:

$('#elem').easyHover({color:'#000', background:'#ccc'});

但是 Praveen 的答案肯定是要走的路。

Also you could just write the following simple plugin to do what you want (automatic unhovering):

$.fn.easyHover = function(cssProps){
   return this.each(function(){
       var $t = $(this);
       var oldProps = {};
       for(x in cssProps)
          oldProps[x] = $t.css(x);
       $t.hover(function(){
          $(this).css(cssProps);
       }, function(){
          $(this).css(oldProps);
       });
   }
}

You could then use it like this:

$('#elem').easyHover({color:'#000', background:'#ccc'});

However Praveen's answer is defenitly the way to go.

萌︼了一个春 2024-08-01 03:29:39

我想另一种方法如下:

// In you stylesheet, just define the default properties
div.test
{
   width: 20px;
   height: 20px;
}

然后,制作一个简单的对象包装器来保存您想要使用的属性

var hoverHelper = (function () {
   var styles = {
      hoverStyle: {
         'color' : '#FFFFFF',
         'background' : '#CC0000'
      },
      defaultStyle: {
         'color' : '#000000',
         'background' : '#FFFFFF'
      }
   };

   return {
      init: function (selector) {
         $(selector).hover(
            function () {
               $(this).css(styles.hoverStyle);
            },
            function () {
               $(this).css(styles.defaultStyle);
            }
         );
      }
   };
}());

hoverHelper.init('.hoverElementClass'); // Apply the hover functions
                                        // to all matching elements

。这样,至少您可以将样式定义保留在一个地方。

I suppose another way to go would be the following:

// In you stylesheet, just define the default properties
div.test
{
   width: 20px;
   height: 20px;
}

Then, make a simple object wrapper to hold the properties you want to use

var hoverHelper = (function () {
   var styles = {
      hoverStyle: {
         'color' : '#FFFFFF',
         'background' : '#CC0000'
      },
      defaultStyle: {
         'color' : '#000000',
         'background' : '#FFFFFF'
      }
   };

   return {
      init: function (selector) {
         $(selector).hover(
            function () {
               $(this).css(styles.hoverStyle);
            },
            function () {
               $(this).css(styles.defaultStyle);
            }
         );
      }
   };
}());

hoverHelper.init('.hoverElementClass'); // Apply the hover functions
                                        // to all matching elements

This way, at least you keep the style definitions in one place.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文