3

</body>标签之前的文档末尾,我有所需的资源:

{{ HTML::script('/themes/admin/js/jquery.js') }}
{{ HTML::script('/themes/admin/js/jquery-ui.js') }}
{{ HTML::script('/themes/admin/js/bootstrap.min.js') }}
{{ HTML::script('/themes/admin/js/wys.js') }} // Bootstrap-wysiwyg

所有脚本都已链接,并且可以正常工作。这是我的 HTML:

<div id="editor" class="well col-md-3" contenteditable="true">

</div>

<script type="text/javascript">
  $('#editor').wysiwyg();
</script>

这是我上面的工具栏代码:

    <div class="well">
      <div class="btn-toolbar" data-role="editor-toolbar" data-target="#editor">
      <div class="btn-group">
        <a class="btn btn-primary dropdown-toggle" data-toggle="dropdown" title="" data-original-title="Font"><i class="glyphicon glyphicon-font"></i><b class="caret"></b></a>
          <ul class="dropdown-menu">
          <li><a data-edit="fontName Serif" style="font-family:'Serif'">Serif</a></li><li><a data-edit="fontName Sans" style="font-family:'Sans'">Sans</a></li><li><a data-edit="fontName Arial" style="font-family:'Arial'">Arial</a></li><li><a data-edit="fontName Arial Black" style="font-family:'Arial Black'">Arial Black</a></li><li><a data-edit="fontName Courier" style="font-family:'Courier'">Courier</a></li><li><a data-edit="fontName Courier New" style="font-family:'Courier New'">Courier New</a></li><li><a data-edit="fontName Comic Sans MS" style="font-family:'Comic Sans MS'">Comic Sans MS</a></li><li><a data-edit="fontName Helvetica" style="font-family:'Helvetica'">Helvetica</a></li><li><a data-edit="fontName Impact" style="font-family:'Impact'">Impact</a></li><li><a data-edit="fontName Lucida Grande" style="font-family:'Lucida Grande'">Lucida Grande</a></li><li><a data-edit="fontName Lucida Sans" style="font-family:'Lucida Sans'">Lucida Sans</a></li><li><a data-edit="fontName Tahoma" style="font-family:'Tahoma'">Tahoma</a></li><li><a data-edit="fontName Times" style="font-family:'Times'">Times</a></li><li><a data-edit="fontName Times New Roman" style="font-family:'Times New Roman'">Times New Roman</a></li><li><a data-edit="fontName Verdana" style="font-family:'Verdana'">Verdana</a></li></ul>
     </div>
     </div>
    </div>

现在我可以单击我的 Div 并输入文本或删除它等。但是,如果我选择文本然后单击工具栏中的选项之一,则不会发生任何事情。

此外,当我在可编辑的 div 内单击并选择一些文本时,div 的轮廓显示为选中,但是当我单击工具栏项目之一时,div/文本被取消选择。

4

2 回答 2

7

Mindmup WYSIWYG ( http://mindmup.github.io/bootstrap-wysiwyg/ ) 应该与 Bootstrap 3 一起使用,但您需要更改工具栏 -- https://github.com/mindmup/bootstrap-wysiwyg/issues/101

这是一个工作演示:

http://bootply.com/87859

工具栏功能和编辑器文本选择似乎按预期运行。

于 2013-10-15T17:43:01.670 回答
0

我找到了http://mindmup.github.io/bootstrap-wysiwyg/http://jhollingworth.github.com/bootstrap-wysihtml5/您尝试使用哪一个?

你已经用 Twitter 的 Bootstrap 3 标记了你的问题。

mindup 版本:此处包含 TB 2.3.1 https://github.com/mindmup/bootstrap-wysiwyg/blob/master/index.html

Bootstrap-wysihtml5 6 个月前的最新更新显示在提交消息“将 Bootstrap JavaScript 插件更新到 2.2.1”中

我似乎您尝试使用的插件一开始还没有为 Twitter 的 Bootstrap 3 做好准备。

于 2013-10-14T14:03:17.660 回答