📜  如果文本溢出,html 使工具提示可用 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:40.953000             🧑  作者: Mango

代码示例1
$('.mightOverflow').bind('mouseenter', function(){
    var $this = $(this);

    if(this.offsetWidth < this.scrollWidth && !$this.attr('title')){
        $this.attr('title', $this.text());
        //OR $this.attr('title', $this.val()); //If using input
    }
});