标签:鼠标 .net jquer func text xxxx fun mouse on()
第一种方式
使用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的属性值
转载自http://www.jb51.net/article/104721.htm
标签:鼠标 .net jquer func text xxxx fun mouse on()
原文地址:http://www.cnblogs.com/hehang/p/7423423.html