检查错误后表达式已更改

时间:2018-06-23 05:58:21

标签: html angular typescript wep

如果元素中有溢出,我将使代码弹出工具提示,如果没有溢出,则不显示工具提示

<div class="title">
<div #titleElement class="ttt" [innerHtml]="title" data-toggle="tooltip" 
data- placement="bottom" [title]=isOverflown(titleElement)?title:null></div>
</div>

类型脚本代码:

isOverflown(titleElement) {
return titleElement.scrollHeight > titleElement.clientHeight || 
titleElement.scrollWidth > titleElement.clientWidth ;
}

但是,即使元素已溢出,也可能是控制台错误:检查后,表达式已更改 enter image description here

0 个答案:

没有答案