// 当文字溢出的时候给title提示
titleEnter(e, text) {
// console.log("这是e", e);
var target = e.target;
var containerLength = $(target).width(); //当前容器的宽度
var textLength = target.scrollWidth; //当前文字(包括省略部分)的宽度
if (textLength > containerLength) {
$(target).attr("title", text);
} else {
$(target).removeAttr("title");
}
},
js 代码 当文字溢出的时候给title提示
最新推荐文章于 2023-09-08 14:48:05 发布