$(function () { $("td").on("mouseenter",function() { if (this.offsetWidth < this.scrollWidth) { var that = this; var text = $(this).text(); $(this).attr("title",text); } }); })
鼠标移入时,显示td中未显示完全的文字
最新推荐文章于 2024-03-01 16:40:56 发布
$(function () { $("td").on("mouseenter",function() { if (this.offsetWidth < this.scrollWidth) { var that = this; var text = $(this).text(); $(this).attr("title",text); } }); })