1. 程式人生 > >js判斷文本是否溢出容器

js判斷文本是否溢出容器

enter 部分 tle 寬度 mov ons ole scroll ips

onShowNameTipsMouseenter: function(e) {
        var target = e.target;
        var containerLength = $(target).width();
        var textLength = target.scrollWidth;
        var text = $(target).html();
        //console.log("contentLength:" + containerLength);
        //console.log("textLength", textLength);
if (textLength > containerLength) { $(target).attr( "title", text); } else { $(target).removeAttr( "title"); } }

var containerLength = $(target).width(); 當前容器的寬度
var textLength = target.scrollWidth; 當前文字(包括省略部分)的寬度

js判斷文本是否溢出容器