When a divs value is changed, how Can I trigger an event?
Click this div to edit it
-
the best solution to this currently is the HTML5 input event
<div contenteditable="true" id="content"></div>
in your jquery.
$('#content').on('input', (e) => {
// your code here
alert('changed')
});
讨论(0)
-
What you have to do is make a conjunction of blur
and DOMSubtreeModified
events on your contenteditable
elements.
var contentEdited = false;
function fn($el) {
if (contentEdited) {
var text = $el[0].innerText.trim();
console.log(text);
contentEdited = false;
}
}
$("div.editable").on("blur", function() {
fn($(this));
}).on("DOMSubtreeModified", function() {
contentEdited = true;
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="editable" contenteditable="true">Click this div to edit it<div>
讨论(0)
-
Yet another version in jquery. View in jsFiddle here.
var $editableContent = $("#mycontent");
// Implement on text change
$editableContent.on("focus", function(event) {$(this).data("currentText", $(this).text());});
$editableContent.on("blur", function (event) {
if ($(this).text() != $(this).data("currentText")) {
$(this).trigger('change');}});
// Wire onchange event
$editableContent.on("change", function(){alert("Text changed to: " + $(this).text())});
讨论(0)
-
In chrome and maybe in other browsers there is bug, when user presses tab it will create space and append apple-be span or some thing like that.. to remove that user
var contents = $('.changeable').html();
$('.changeable').blur(function() {
if (contents!=$(this).html()){
alert('Handler for .change() called.');
$(".Apple-tab-span").remove();
contents = $(this).html();
contentsTx = $(this).text();
alert(contentsTx);
}
});
This will remove the span..
it same as above code just modified it little, or u can add
.Apple-tab-span
{
Display:None;
}
and this will also solve problem ..
http://jsfiddle.net/a4QNB/312/
Just modified @Nikals answer ...
讨论(0)
-
Another solution which is slightly modified version of previous ones but it may be more comfortable to use for some of you.
Idea is to save origin value and compare it with current value in 'blur' event. I save origin value as attribute of editable div tag (instead of creating variable for origin value). Using attribute as container for origin value is more comfortable when one has a huge number of editable divs in table (as cells). So it is easy to get origin value since you don't need to create many variables.
See my complete example code:
editable div
<td><div contenteditable="true" class="cell" origin="originValue">originValue</div></td>
detecting changes in blur
var cells = $("#table").find('td>div[contenteditable=true]');
cells.each(function () {
$(this).blur(function() {
if ($(this).text() != $(this).attr("origin")) {
console.log('changed');
}
});
});
讨论(0)
-
You can simply use focus/blur event with data() function of jQuery :
// Find all editable content.
$('[contenteditable=true]')
// When you click on item, record into data("initialText") content of this item.
.focus(function() {
$(this).data("initialText", $(this).html());
});
// When you leave an item...
.blur(function() {
// ...if content is different...
if ($(this).data("initialText") !== $(this).html()) {
// ... do something.
console.log('New data when content change.');
console.log($(this).html());
}
});
});
UPDATE: With Vanilla JS
// Find all editable content.
var contents = document.querySelectorAll("[contenteditable=true]");
[].forEach.call(contents, function (content) {
// When you click on item, record into `data-initial-text` content of this item.
content.addEventListener("focus", function () {
content.setAttribute("data-initial-text", content.innerHTML);
});
// When you leave an item...
content.addEventListener("blur", function () {
// ...if content is different...
if (content.getAttribute("data-initial-text") !== content.innerHTML) {
// ... do something.
console.log("New data when content change.");
console.log(content.innerHTML);
}
});
});
讨论(0)