68

我见过这个 jQuery 语法:

if($(element).is(':hover')) { do something}

由于我没有使用 jQuery,我正在寻找在纯 JavaScript 中执行此操作的最佳方法。

我知道我可以保留一个全局变量并使用 and 设置/取消设置它mouseovermouseout但我想知道是否有某种方法可以通过 DOM 检查元素的本机属性?也许是这样的:

if(element.style.className.hovered === true) {do something}

此外,它必须是跨浏览器兼容的。

4

4 回答 4

77

简单地使用element.matches(':hover')似乎对我来说效果很好,您也可以为旧版浏览器使用全面的 polyfill:https ://developer.mozilla.org/en-US/docs/Web/API/Element/matches

于 2017-10-27T10:00:45.900 回答
64

您可以将querySelector 用于 IE>=8

const isHover = e => e.parentElement.querySelector(':hover') === e;    

const myDiv = document.getElementById('mydiv');
document.addEventListener('mousemove', function checkHover() {
  const hovered = isHover(myDiv);
  if (hovered !== checkHover.hovered) {
    console.log(hovered ? 'hovered' : 'not hovered');
    checkHover.hovered = hovered;
  }
});
.whyToCheckMe {position: absolute;left: 100px;top: 50px;}
<div id="mydiv">HoverMe
  <div class="whyToCheckMe">Do I need to be checked too?</div>
</div>

回退我认为可以@Kolink回答。

于 2013-02-10T17:11:41.760 回答
8

首先,您需要跟踪悬停在哪些元素上。这是一种方法:

(function() {
    var matchfunc = null, prefixes = ["","ms","moz","webkit","o"], i, m;
    for(i=0; i<prefixes.length; i++) {
        m = prefixes[i]+(prefixes[i] ? "Matches" : "matches");
        if( document.documentElement[m]) {matchfunc = m; break;}
        m += "Selector";
        if( document.documentElement[m]) {matchfunc = m; break;}
    }
    if( matchfunc) window.isHover = function(elem) {return elem[matchfunc](":hover");};
    else {
        window.onmouseover = function(e) {
            e = e || window.event;
            var t = e.srcElement || e.target;
            while(t) {
                t.hovering = true;
                t = t.parentNode;
            }
        };
        window.onmouseout = function(e) {
            e = e || window.event;
            var t = e.srcElement || e.target;
            while(t) {
                t.hovering = false;
                t = t.parentNode;
            }
        };
        window.isHover = function(elem) {return elem.hovering;};
   }
})();
于 2013-02-10T06:19:15.193 回答
6

我突然想到,检查元素是否悬停的一种方法是在 css 中设置一个未使用的属性:hover,然后检查该属性是否存在于 javascript 中。它不是问题的正确解决方案,因为它没有使用本地悬停属性,但它是我能想到的最接近和最小的解决方案。

<html>
    <head>
        <style type="text/css">
#hover_el
{   
    border: 0px solid blue;
    height: 100px;
    width: 100px;
    background-color: blue;
}   
#hover_el:hover
{   
    border: 0px dashed blue;
}
        </style>
        <script type='text/javascript'>
window.onload = function() {check_for_hover()};
function check_for_hover() {
    var hover_element = document.getElementById('hover_el');
    var hover_status = (getStyle(hover_element, 'border-style') === 'dashed') ? true : false;
    document.getElementById('display').innerHTML = 'you are' + (hover_status ? '' : ' not') + ' hovering';
    setTimeout(check_for_hover, 1000);
};
function getStyle(oElm, strCssRule) {
    var strValue = "";
    if(document.defaultView && document.defaultView.getComputedStyle) {
        strValue = document.defaultView.getComputedStyle(oElm, "").getPropertyValue(strCssRule);
    }
    else if(oElm.currentStyle) {
        strCssRule = strCssRule.replace(/\-(\w)/g, function (strMatch, p1) {
            return p1.toUpperCase();
        });
        strValue = oElm.currentStyle[strCssRule];
    }
    return strValue;
};
        </script>
    </head>
    <body>
        <div id='hover_el'>hover here</div>
        <div id='display'></div>
    </body>
</html>

(功能getStyle感谢JavaScript get Styles

如果有人能想到一个更好的 CSS 属性来用作标志,solid/dashed请告诉我。该财产最好是很少使用且不能继承的财产。

于 2013-02-10T13:08:05.020 回答