如何添加Bootstrap工具提示?

时间:2013-12-01 01:11:01

标签: css html5 twitter-bootstrap

我想在我的代码上添加工具提示:

<a class="fa fa-facebook-square"
      href="https://www.facebook.com/sharer/sharer.php?u={{url absolute="true"}}" 
      onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
<span class="hidden">Facebook</span> </a>

1 个答案:

答案 0 :(得分:2)

此代码应该有效。如果没有,请告诉我。

<a class="fa fa-facebook-square"
      href="https://www.facebook.com/sharer/sharer.php?u={{url absolute="true"}}" 
      onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;
      data-toggle="tooltip"
      data-placement="right"
      title="This is a tooltip!"">
<span class="hidden">Facebook</span> </a>