作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试从 javascript 触发 ngx-bootstrap 工具提示。下面的代码运行没有任何问题。现在我想从 javascript 端手动调用 show() 函数。
问题是我不知道“bs-tooltip”是什么。它是由 ngx-bootstrap 创建的元素的 id 吗?如果是这样我怎样才能从javascript获取这个元素?
<p>
<span tooltip="Hello there! I was triggered manually"
triggers="" #customTooltip="bs-tooltip">
This text has attached tooltip
</span>
</p>
<button type="button" class="btn btn-success" (click)="customTooltip.show()">
Show
</button>
<button type="button" class="btn btn-warning" (click)="customTooltip.hide()">
Hide
</button>
<button type="button" class="btn btn-info" (click)="customTooltip.toggle()">
Toggle
</button>
编辑:
document.getElementById("bs-tooltip") //returns null
最佳答案
尝试使用 viewChild
访问组件类中的 customTooltip
:
import { ViewChild } from '@angular/core';
export class YourComponent {
@ViewChild('customTooltip') tooltip: ElementRef;
onClick() {
this.tooltip.show();
}
}
<span #customTooltip="bs-tooltip" tooltip="Hello there! I was triggered manually" triggers="" > This text has attached tooltip</span>
关于javascript - 如何从 javascript 触发工具提示?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49448080/
我是一名优秀的程序员,十分优秀!