<legend id='RzBsh'><style id='RzBsh'><dir id='RzBsh'><q id='RzBsh'></q></dir></style></legend>

    <small id='RzBsh'></small><noframes id='RzBsh'>

  1. <tfoot id='RzBsh'></tfoot>
    <i id='RzBsh'><tr id='RzBsh'><dt id='RzBsh'><q id='RzBsh'><span id='RzBsh'><b id='RzBsh'><form id='RzBsh'><ins id='RzBsh'></ins><ul id='RzBsh'></ul><sub id='RzBsh'></sub></form><legend id='RzBsh'></legend><bdo id='RzBsh'><pre id='RzBsh'><center id='RzBsh'></center></pre></bdo></b><th id='RzBsh'></th></span></q></dt></tr></i><div id='RzBsh'><tfoot id='RzBsh'></tfoot><dl id='RzBsh'><fieldset id='RzBsh'></fieldset></dl></div>
        <bdo id='RzBsh'></bdo><ul id='RzBsh'></ul>

      使用引导程序的工具提示中的图像?

      时间:2023-09-05
    1. <legend id='6vfPT'><style id='6vfPT'><dir id='6vfPT'><q id='6vfPT'></q></dir></style></legend>
        <bdo id='6vfPT'></bdo><ul id='6vfPT'></ul>
        <i id='6vfPT'><tr id='6vfPT'><dt id='6vfPT'><q id='6vfPT'><span id='6vfPT'><b id='6vfPT'><form id='6vfPT'><ins id='6vfPT'></ins><ul id='6vfPT'></ul><sub id='6vfPT'></sub></form><legend id='6vfPT'></legend><bdo id='6vfPT'><pre id='6vfPT'><center id='6vfPT'></center></pre></bdo></b><th id='6vfPT'></th></span></q></dt></tr></i><div id='6vfPT'><tfoot id='6vfPT'></tfoot><dl id='6vfPT'><fieldset id='6vfPT'></fieldset></dl></div>

          1. <tfoot id='6vfPT'></tfoot>
              <tbody id='6vfPT'></tbody>

            <small id='6vfPT'></small><noframes id='6vfPT'>

                本文介绍了使用引导程序的工具提示中的图像?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                <button title="Tooltip on right" data-placement="right" data-toggle="tooltip" class="btn btn-default mrs" type="button">Tooltip on right</button>
                
                
                <script>
                  $(function () {
                    $('[data-toggle=tooltip]').tooltip();
                  });
                </script>
                

                这很好用,但我想在工具提示中包含一张图片和一些文字.我尝试使用 data-content="some stuff" 但它什么也没显示.

                This works fine but I'd like to include an image and some text inside the tooltip. I tried to use data-content="some stuff" but it shows nothing.

                推荐答案

                你必须在初始化.tooltip时传入html选项.例如

                You have to pass in the html option to when you initialize .tooltip. e.g.

                <div class="cart"> 
                    <a data-toggle="tooltip" title="<img src='http://getbootstrap.com/apple-touch-icon.png' />">
                        <i class="icon-shopping-cart"></i>
                    </a>
                

                $('a[data-toggle="tooltip"]').tooltip({
                    animated: 'fade',
                    placement: 'bottom',
                    html: true
                });
                

                查看示例fiddle

                这篇关于使用引导程序的工具提示中的图像?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:为什么 fetch 返回 status = 0 的响应? 下一篇:修复了滚动 div 内的 div

                相关文章

                <small id='siYx2'></small><noframes id='siYx2'>

                    • <bdo id='siYx2'></bdo><ul id='siYx2'></ul>

                  1. <tfoot id='siYx2'></tfoot><legend id='siYx2'><style id='siYx2'><dir id='siYx2'><q id='siYx2'></q></dir></style></legend>

                    <i id='siYx2'><tr id='siYx2'><dt id='siYx2'><q id='siYx2'><span id='siYx2'><b id='siYx2'><form id='siYx2'><ins id='siYx2'></ins><ul id='siYx2'></ul><sub id='siYx2'></sub></form><legend id='siYx2'></legend><bdo id='siYx2'><pre id='siYx2'><center id='siYx2'></center></pre></bdo></b><th id='siYx2'></th></span></q></dt></tr></i><div id='siYx2'><tfoot id='siYx2'></tfoot><dl id='siYx2'><fieldset id='siYx2'></fieldset></dl></div>