无法在Bootstrap容器中添加wysiwyg编辑器

时间:2015-07-01 09:22:41

标签: javascript html css twitter-bootstrap wysiwyg

我正在尝试为自己的博客cms开发管理页面,例如wp。

但是我无法在我的管理页面中添加wysiwyg编辑器

<div class="box-inner">

         <style type="text/javascript"> $('#editor').wysiwyg();</style> /* this is editor */


        <div class="box-header well" data-original-title="">
            <h2><i class="glyphicon glyphicon-edit"></i>  Add Article</h2>

            <div class="box-icon">

                <a href="#" class="btn btn-minimize btn-round btn-default"><i
                        class="glyphicon glyphicon-chevron-up"></i></a>
                <a href="#" class="btn btn-close btn-round btn-default"><i
                        class="glyphicon glyphicon-remove"></i></a>
            </div>
        </div>

enter image description here

1 个答案:

答案 0 :(得分:0)

不确定编辑器是如何工作的,但是你的脚本标签已损坏:

<style type="text/javascript"> $('#editor').wysiwyg();</style> /* this is editor */

应该是:

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