我试图让引导弹出窗口在网站上工作,我已经取得了一些成功。单击链接时,我可以显示弹出框,但是除了标题之外,我在框中看不到任何内容。我已经尝试了两种方法:
<a class="btn btn-link login-popover" rel="popover" data-placement="bottom" data-title="Sign in to the website builder" data-html="true" data-content="Lo4545445"> Sign in <span class="caret"></span></a>
和
$('.login-popover').popover({
placement: 'bottom',
title: 'Sign in to the website builder',
content: 'testing 123',
trigger: 'click'
});
然而,没有人真正显示框中的内容。您可以通过访问http://www.onemobi.net/new并单击Sign in
顶部来了解我的意思。
编辑:我不会同时做这两件事。我试过一个,然后另一个。