如何使用Bootstrap添加多个富文本编辑器

时间:2015-08-24 16:03:14

标签: javascript jquery twitter-bootstrap

我使用bootstrap plugin添加富文本编辑器。如果我正在使用它,它运行良好,但是当我尝试添加多个文本编辑器时,它只显示一个文本编辑器。

JavaScript的:

<script src="editor.js"></script>
     <script type="text/javascript">
         $(document).ready(function () {
             $(".RTE").Editor();
         });
</script>

我的HTML:

<div id="txtEditor" class="RTE"></div>
         <div id="Div1"  class="RTE"></div>
         <div id="Div2" class="RTE"></div>

编辑()是:

$.fn.Editor = function( method ){

        if ( methods[method] ) {
            return methods[method].apply( this, Array.prototype.slice.call( arguments, 1 ));
        } else if ( typeof method === 'object' || ! method ) {
            return methods.init.apply( this, arguments );
        } else {
            $.error( 'Method ' +  method + ' does not exist on jQuery.Editor' );
        }    
    }; 

无论我添加多少div个标签,它都只显示一个编辑器。

如何添加多个(我想要的多个)编辑器?

0 个答案:

没有答案