1
彈出窗口只顯示直到Ckeditor初始化。兩者是否可以一起工作?如何使用嵌入式CKEditor 4在滿足需求的div中顯示Twitter Bootstrap彈出窗口?
這裏是一個演示:
HTML
<div contenteditable="true">Content
Oh, I love you so!
<span id="example" rel="popover"
data-content="This is the body of Popover 1"
data-original-title="Creativity Tuts">
POPOVER EXAMPLE HERE
</span>
</div>
<p>
Lorem Ipsum
</p>
<span id="example2"rel="popover"
data-content="This is the body of Popover 2"
data-original-title="Creativity Tuts">
POPOVER EXAMPLE 2 HERE
</span>
JS
CKEDITOR.config.toolbarGroups = [
{ name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] }
];
$('#example').popover('show');
$('#example2').popover('show');
會明白的答案藏漢一個voteup。謝謝! – Dekel
完成thx :)神奇的解決方案。 – giorgio79