jquery – 当contenteditable改变时触发事件

前端之家收集整理的这篇文章主要介绍了jquery – 当contenteditable改变时触发事件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当divs值更改时,我如何触发事件?
<div class="changeable" contenteditable="true"> Click this div to edit it <div>

所以当它的内容改变我想创建一个警报和/或做其他事情:

$('.changeable').text().change(function() {
  alert('Handler for .change() called.');
});

解决方法

只是将内容存储到一个变量,并检查它是否不同后blur()事件。如果不同,则存储新内容
var contents = $('.changeable').html();
$('.changeable').blur(function() {
    if (contents!=$(this).html()){
        alert('Handler for .change() called.');
        contents = $(this).html();
    }
});

例如:http://jsfiddle.net/niklasvh/a4QNB/

原文链接:https://www.f2er.com/jquery/184515.html

猜你在找的jQuery相关文章