4

我正在使用 jeditable,并且我将嵌套元素全部绑定到 jeditable。问题是当我单击嵌套元素时,单击事件会在最顶层的父级上触发。我怎样才能避免这种情况?

$(document).ready(function() {
 console.log('loading');
 $('div.wrapper').editable('edit/', { 
     loadurl   : 'edit/',
     //id        : 'section',
     name      : 'content',
     submitdata  : function(value, settings) {
         var section = $(this).parent('section').attr("data-section");
         return {
             section: section,
             type: 'ajax',
         }
     },
     loaddata  : function(value, settings) {
         var section = $(this).parent('section').attr("data-section");
         return {
             section: section,
             type: 'ajax',
         }
     },
     rows      : 6,
     width     : '100%',
     type      : 'textarea',
     cancel    : 'Cancel',
     submit    : 'OK',
     indicator : 'Saving changes',
     tooltip   : "Doubleclick to edit...",
     onblur    : 'ignore',
     event     : "dblclick",
     style     : 'inherit',
     callback : function(value, settings) {
         // console.log(this);
         console.log(value);
         console.log(settings);
         $('section[class^="annotation"]').each(function(index) {
            $(this).attr('data-section', index + 1);
         });
     }
 });
});

[编辑]

这是HTML代码:

<article>
    <section class="annotation1" data-section="1" id="section_data-section1" typeof="aa:section">
        <div class="wrapper" title="Doubleclick to edit...">
            <h1>Section </h1>
            <p>some content</p>
            <section class="annotation2" data-section="2" id="subsection_data-section2" typeof="aa:section">
                <div class="wrapper" title="Doubleclick to edit...">
                    <h2>Subsection </h2>
                    <p>some more content</p>
                </div>
            </section>
        </div>
    </section>
</article>

谢谢!

4

1 回答 1

0

这比我最初想象的要棘手...

首先,您可以处理 的.dblclick事件div.wrapper,因此您可以停止事件传播。每次双击时,将 jEditable 附加到元素并触发它(注意.click()调用.editable()后 。完成元素编辑后,销毁 jEditable 元素。

就在我以为事情就这样结束的时候,更棘手的事情出现了。编辑完外部div.wrapper元素后,dblclick内部的事件div.wrapper消失了!因此,div.wrapper必须先克隆元素,然后才能将其变为可编辑元素。并且在 jEditable 恢复包装元素之后,它被先前存储的克隆替换。

$('div.wrapper').dblclick(function(event) {
    event.stopPropagation();

    // save a clone of "this", including all events and data
    $(this).data('clone', $(this).clone(true, true))
        .editable('edit/', {
        onreset: function() {
            var $that = this.parent();
            $that.editable('destroy');

            // restore the editable element with the clone
            // to retain the events and data
            setTimeout(function() {
                $that.replaceWith($that.data('clone'));
            }, 50);
        }
    }).click();
});

在行动中看到它:http: //jsfiddle.net/william/vmdz6/3/

在使用编辑的数据更新克隆元素后,您可能需要手动更新它。你应该能够在callback函数中做到这一点。

于 2011-09-15T13:56:29.083 回答