13

目标:将 keydown 事件处理程序附加到作为 contenteditable div 子级的 contenteditable span。

问题:如果您输入跨度,则触发父事件而不是子事件。我想要的是孩子触发,所以我可以抓住文本。我只想要那个可满足的孩子,因为会有很多。

HTML/JS 在下面,小提琴链接在这里:http: //jsfiddle.net/aBYpt/4/


HTML

<div class="parent" contenteditable="true">
    Parent div text.

    <span class="child" contenteditable="true">First child span text.</span>
    <span class="child" contenteditable="true">Second child span text.</span>
    <span class="child" contenteditable="true">Third child span text.</span>
</div>

<div id="console"></div>

JavaScript/jQuery

$(document).on( 'keyup', '.parent', function() {
    $('#console').html( 'Parent keyup event fired.' );
    //do stuff
});

$(document).on( 'keyup', '.child', function() {
    $('#console').html( 'Child keyup event fired.' );
    //do stuff
});

**注意:事件处理委托给文档,因为元素是动态添加的。

4

1 回答 1

9

所以这是一个错误。已确认 FF23 和 CHROME29 的解决方法(在没有 vm 的 linux 上,因此无法测试 IE)。您必须将包装跨度设置为 contenteditable false,您不能只是省略声明 contenteditable 属性,这是可笑的。通过嵌套内容可编辑(jQuery)上的 Keypress 事件的解决方案

这是小提琴:http: //jsfiddle.net/aBYpt/14/

HTML

<div class="parent" contenteditable="true">
    Parent div text.

    <span contenteditable="false">
        <span class="child" contenteditable="true">First child span text.</span>
    <span contenteditable="false">
        <span class="child" contenteditable="true">Second child span text.</span>
    </span>
</div>

<div id="console"></div>

JavaScript/jQuery

$(document).on( 'keyup', '.parent', function() {
    //do stuff
    $('#console').html( 'Parent keyup event fired.' );
});

$(document).on( 'keyup', '.child', function(e) {
    //do stuff
    $('#console').html( 'Child keyup event fired.' );
    e.stopPropagation();
});
于 2013-09-12T18:53:21.433 回答