当前位置:主页 > 网页前端 > jquery >

Jquery鼠标放上去显示全名的实现方法

时间:2021-02-20 09:07:55 | 栏目:jquery | 点击:

第一种方式

使用mouseover、mouseout事件

  // 鼠标滑过显示全名
  var origin_name;
  $('.task_name').mouseover(function() {
    origin_name = $(this).text();
    $(this).text($(this).nextAll("input").val());
  }).mouseout(function() {
    $(this).text(origin_name);
  });

第二种方式

使用a标签的title属性

<a title="xxxx">缩写名</a>

鼠标发上去就会显示title的属性值

您可能感兴趣的文章:

相关文章