javascript – 检测父母是可容忍div的可内容小孩的keyup事件

前端之家收集整理的这篇文章主要介绍了javascript – 检测父母是可容忍div的可内容小孩的keyup事件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
目标:将keydown事件处理程序附加到作为可填写div的子代的可满足范围.

问题:如果您输入跨度,父事件不会被触发.我想要的是孩子触发,所以我可以抓住文本.我只想要这个可爱的孩子,因为会有很多.

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
});

**注意:事件处理被委派为文档,因为元素被动态添加.

解决方法

所以这是一个bug.解决方法确认FF23和CHROME29(在没有vm的linux上,所以不能测试IE).您必须将包装跨度设置为contenteditable false,您不能仅仅省略声明contenteditable属性,这是非常可靠的.解决方案通过 Keypress event on nested content editable (jQuery)

这是小提琴: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',function() {
    //do stuff
    $('#console').html( 'Parent keyup event fired.' );
});

$(document).on( 'keyup',function(e) {
    //do stuff
    $('#console').html( 'Child keyup event fired.' );
    e.stopPropagation();
});
原文链接:https://www.f2er.com/js/152953.html

猜你在找的JavaScript相关文章