0

嗨,我的动态添加文本区域有问题,

我需要在我的所有 textarea 中有 niceEdit html 编辑器,它在硬编码的 textarea 上运行良好,但是当我使用我的 javaScript 动态添加函数来生成 textarea 时,它没有获得 nicEdit html 编辑器。

谁能告诉我我在这里缺少什么。任何意见和建议都非常感谢。

这是我的jsfiddle

4

1 回答 1

3

一步一步来。您需要在每个新添加的控件上为新的 nicEditor 实例实例化。

//Create the text area first and append it to DOM.
var elm = $('<TEXTAREA NAME="description[]" id="test" ></TEXTAREA><a href="#" id="remScnt">Remove</a>').appendTo(scntDiv); 

// Instantiate the nicEditor Instance on it. It will now have the reference of the element in DOM. 
new nicEditor().panelInstance(elm[0]); 

//wrap it with p
elm.wrap($('<p/>')); //You can chain it in the first step itself after appendTo(scntDiv).

演示

具有添加/删除功能的完整更新:

 $(document).on('click', '#addScnt', function () {
    // Add the textarea to DOM
     var elm = $('<textarea NAME="description[]"></textarea>').appendTo(scntDiv); 
    //Get the current SIZE of textArea
     var curSize = $('textarea[name="description[]"]').length; 
    //Set the Object with the index as key and reference for removel
     editors[curSize] = new nicEditor().panelInstance(elm[0]); 
    //Create anchor Tag with rel attribute as that of the index of corresponding editor
     elm.after($('<a/>', { 
         rel: curSize,
         'class': "remScnt",
         text: "Remove",
         href: '#'
     })).next().andSelf().wrapAll($('<p/>')); //add it to DOM and wrap this and the textarea in p

 });

 $(document).on('click', '.remScnt', function (e) {
     e.preventDefault();
     //Get the textarea of the respective anchor
     var elem = $(this).prev('textarea'); 
     //get the key from rel attribute of the anchor
     var index = this.rel; 
     //Use it to get the instace and remove
     editors[index].removeInstance(elem[0]);
     //delete the property from object
     delete editors[index]; 
     //remove the element.
     $(this).closest('p').remove(); 

 });

演示

注意live()在较新的版本中已弃用并停止使用,因此on()与事件委托一起用于动态创建的元素。还将删除链接的 id 更改为 class,.remScnt因为重复的 id 可能会导致问题并使 html 无效

于 2013-07-02T03:14:38.703 回答