jquery hover将变量传递给回调函数

前端之家收集整理的这篇文章主要介绍了jquery hover将变量传递给回调函数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图在悬停时删除链接标题属性,然后在鼠标移出时将其添加回来.我想将var hoverText传递给悬停…

这是我的代码.有任何想法吗?

$(".icon a").hover(function() {
  $this = $(this);
  var hoverText = $.data(this,'title',$this.attr('title'));                             
  $(this).find("em").animate({opacity: "show",top: "-35"},"slow");
  $(this).find("em").text(hoverText);       

  $this.removeAttr('title');       


},function(hoverText) {             

  $(this).find("em").animate({opacity: "hide",top: "-45"},"fast");     
  $(this).attr("title",hoverText);

});

解决方法

将“hoverText”作为全局变量.
var hoverText = '';
$(".icon a").hover(function() {
  $this = $(this);
  hoverText = $.data(this,function() {             

  $(this).find("em").animate({opacity: "hide",hoverText);

});
原文链接:https://www.f2er.com/jquery/177210.html

猜你在找的jQuery相关文章