📅  最后修改于: 2022-03-11 15:01:40.953000             🧑  作者: Mango
$('.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
}
});