最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to read bound hover callback functions in jQuery - Stack Overflow

programmeradmin2浏览0评论

I used jQuery to set hover callbacks for elements on my page. I'm now writing a module which needs to temporarily set new hover behaviour for some elements. The new module has no access to the original code for the hover functions.

I want to store the old hover functions before I set new ones so I can restore them when finished with the temporary hover behaviour.

I think these can be stored using the jQuery.data() function:

//save old hover behavior (somehow)

$('#foo').data('oldhoverin',???)

$('#foo').data('oldhoverout',???);

//set new hover behavior

$('#foo').hover(newhoverin,newhoverout);

Do stuff with new hover behaviour...

//restore old hover behaviour
$('#foo').hover($('#foo').data('oldhoverin'),$('#foo').data('oldhoverout'));

But how do I get the currently registered hover functions from jQuery?

Shadow2531, I am trying to do this without modifying the code which originally registered the callbacks. Your suggestion would work fine otherwise. Thanks for the suggestion, and for helping clarify what I'm searching for. Maybe I have to go into the source of jquery and figure out how these callbacks are stored internally. Maybe I should change the question to "Is it possible to do this without modifying jquery?"

I used jQuery to set hover callbacks for elements on my page. I'm now writing a module which needs to temporarily set new hover behaviour for some elements. The new module has no access to the original code for the hover functions.

I want to store the old hover functions before I set new ones so I can restore them when finished with the temporary hover behaviour.

I think these can be stored using the jQuery.data() function:

//save old hover behavior (somehow)

$('#foo').data('oldhoverin',???)

$('#foo').data('oldhoverout',???);

//set new hover behavior

$('#foo').hover(newhoverin,newhoverout);

Do stuff with new hover behaviour...

//restore old hover behaviour
$('#foo').hover($('#foo').data('oldhoverin'),$('#foo').data('oldhoverout'));

But how do I get the currently registered hover functions from jQuery?

Shadow2531, I am trying to do this without modifying the code which originally registered the callbacks. Your suggestion would work fine otherwise. Thanks for the suggestion, and for helping clarify what I'm searching for. Maybe I have to go into the source of jquery and figure out how these callbacks are stored internally. Maybe I should change the question to "Is it possible to do this without modifying jquery?"

Share Improve this question edited Mar 22, 2019 at 15:16 Shiladitya 12.2k17 gold badges28 silver badges42 bronze badges asked Sep 8, 2008 at 0:29 MnebuerquoMnebuerquo 5,9796 gold badges48 silver badges54 bronze badges
Add a ment  | 

4 Answers 4

Reset to default 4

Calling an event bind method (such as hover) does not delete old event handlers, only adds your new events, so your idea of 'restoring' the old event functions wouldn't work, as it wouldn't delete your events.

You can add your own events, and then remove them without affecting any other events then use Event namespacing: http://docs.jquery./Events_(Guide)#Namespacing_events

Not sure if this will work, but you can try this:

function setHover(obj, mouseenter, mouseleave) {
  obj.data("_mouseenter", mouseenter);
  obj.data("_mouseleave", mouseleave);
  obj.hover(obj.data("_mouseenter"), obj.data("_mouseleave"));
}

function removeHover(obj) {
  obj.unbind("mouseenter", obj.data("_mouseenter"));
  obj.unbind("mouseleave", obj.data("_mouseleave"));
  obj.data("_mouseenter", undefined);
  obj.data("_mouseleave", undefined);
}

$(document).ready(function() {
  var test = $("#test");
  setHover(test, function(e) {
    alert("original " + e.type);
  }, function(e) {
    alert("original " + e.type);
  });
  var saved_mouseenter = test.data("_mouseenter");
  var saved_mouseleave = test.data("_mouseleave");
  removeHover(test);
  setHover(test, function() {
    alert("zip");
  }, function() {
    alert('zam');
  });
  removeHover(test);
  setHover(test, saved_mouseenter, saved_mouseleave);
});
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="utf-8">
  <title>Jquery - Get, change and restore hover handlers</title>
  <script src="https://cdnjs.cloudflare./ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>

<body>
  <p><a id="test" href="">test</a></p>
</body>

</html>

If not, maybe it'll give you some ideas.

I'm not sure if this is what you mean, but you can bind custom events and then trigger them.

http://docs.jquery./Events/bind

So add your hover event, script the functionality you need for that hover, then trigger your custom event.

Maybe it would be easier to just hide the old element and create a clone with your event handlers attached? Then just swap back in the old element when you're done..

发布评论

评论列表(0)

  1. 暂无评论