33

不确定这是否可能,我试图在输入组内的字形图标上调用工具提示,我的代码(不起作用)是;

<div class="input-group">
<input type="text" class="form-control" name="security" id="security"><span class="input-group-addon"><span class="glyphicon glyphicon-info-sign" data-toggle="tooltip" data-container: 'body' title="" data-original-title="Security Code"></span></span>
</div>

我正在使用 Bootstrap 3 和最新版本的 jQuery。

4

5 回答 5

77

您可以使用 title 属性(在您的示例中为空白)在字形图标上获得一个简单的工具提示。

title="info"

工作代码

 // add this in your js
 // all the glyphicons having the class "my-tooltip" will show a tooltip if "title" attribute is present
 $(".my-tooltip").tooltip();

 <span class='glyphicon glyphicon-info-sign my-tooltip' title="here goes the tooltip text"></span>
于 2013-10-30T17:02:11.773 回答
22

使用@MadJack 的答案,我重写了您的代码并在 JSFiddle 上进行了测试。

HTML:

<div class="input-group" style='margin-top: 100px;'>
    <input type="text" class="form-control" name="security" id="security">
        <span class="input-group-addon">
            <a class='my-tool-tip' data-toggle="tooltip" data-placement="left" title="Tooltip here">
                <!-- The class CANNOT be tooltip... -->
                <i class='glyphicon glyphicon-info-sign'></i>
            </a>
        </span>
    </input>
</div>

JS:

$("a.my-tool-tip").tooltip();

希望这可以帮助,

JSF中。

-安德鲁

于 2014-04-23T17:22:18.633 回答
5

一个引导新手在这里......

要将 Tooltip 插件与 glyph-icon 一起使用,我发现成功地将 glyph-icon span 标签与没有 href 的锚标签包装在一起:

<a data-toggle="tooltip" class="tooltipLink" data-original-title="Tooltip text goes here">
  <span class="glyphicon glyphicon-info-sign"></span>
</a>

此外,请务必使用工具提示初始化链接的工具提示:

$("a.tooltipLink").tooltip();

我使用 Bootstrap 3.03、jQuery 1.10.2 + Firefox 26、Chrome 32.0.1700 和 IE 11.0.9600 对此进行了测试。到目前为止,没有打嗝。

于 2014-01-17T03:20:11.530 回答
5
<span class="glyphicon glyphicon-info-sign icon_info" title="info"></span>

然后添加 javascript 代码来初始化工具提示,如下所示:

$(".icon_info").tooltip();
于 2017-03-11T15:57:21.047 回答
3

使用 Bootstrap 的 Popover 让它有点好,这是 文档和示例代码片段

$(function () {
  $('.fa').popover({trigger: "hover"});
})
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="Information Popover snippet">
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>Information Popover snippet</title>
  <script src="https://code.jquery.com/jquery.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css" rel="stylesheet" type="text/css" />
</head>
<body>  
  <span><i data-content="Simple Clean way to show more detailed information about anything" class="fa fa-question-circle"></i></span>
</body>
</html>

于 2019-06-20T11:53:13.083 回答