如何避免从 jQuery 中的 contenteditable <p> 中删除键入的文本
How to avoid removing typed text from contenteditable <p> in jQuery
我正在使用 jQuery UI 可拖动组件将 <span>
添加到可编辑的内容 <p>
。
预期的输出是,段落 <p>
应该是可编辑的,可拖动组件应该能够拖放到段落并且 <p>
的内容应该是可编辑的。我的代码有问题。当我在 <p>
中键入内容并单击外部 <p>
时。从段落中删除键入的单词。
我的代码如下:
$(function() {
function textWrapper(str, sp, btn) {
if (sp == undefined) {
sp = [0, 0];
}
var txt = "";
if (btn) {
txt = "<span class='w b'>" + str + "</span>";
} else {
txt = "<span class='w'>" + str + "</span>";
}
if (sp[0]) {
txt = " " + txt;
}
if (sp[1]) {
txt = txt + " ";
}
return txt;
}
function chunkWords(p) {
var words = p.split(" ");
words[0] = textWrapper(words[0], [0, 1]);
var i;
for (i = 1; i < words.length; i++) {
var re = /\[.+\]/;
if (re.test(words[i])) {
var b = makeTextBox(words[i].slice(1, -1));
words[i] = " " + b.prop("outerHTML") + " ";
} else {
if (words[0].indexOf(".")) {
words[i] = textWrapper(words[i], [1, 0]);
} else {
words[i] = textWrapper(words[i], [1, 1]);
}
}
}
return words.join("");
}
function unChunkWords(tObj) {
var words = [];
$(".w", tObj).each(function(i, el) {
console.log($(el).text(), $(el).attr("class"));
if ($(el).hasClass("b")) {
words.push("[" + $(el).text().trim() + "]");
} else {
words.push($(el).text().trim());
}
});
return words.join(" ");
}
function makeBtn(tObj) {
var btn = $("<span>", {
class: "ui-icon ui-icon-close"
}).appendTo(tObj);
}
function makeTextBox(txt) {
var sp = $("<span>", {
class: "w b"
}).html(txt);
makeBtn(sp);
return sp;
}
function makeDropText(obj) {
return obj.droppable({
drop: function(e, ui) {
var txt = ui.draggable.text();
var newSpan = textWrapper(txt, [1, 0], 1);
$(this).after(newSpan);
makeBtn($(this).next("span.w"));
makeDropText($(this).next("span.w"));
$("span.w.ui-state-highlight").removeClass("ui-state-highlight");
},
over: function(e, ui) {
$(this).add($(this).next("span.w")).addClass("ui-state-highlight");
},
out: function() {
$(this).add($(this).next("span.w")).removeClass("ui-state-highlight");
}
});
}
$("p.given").html(chunkWords($("p.given").text()));
$("p.given").on("click", ".b > .ui-icon", function() {
$(this).parent().remove();
});
$("p.given").blur(function() {
var w = unChunkWords($(this));
console.log(w);
$(this).html(chunkWords(w));
makeDropText($("p.given span.w"));
});
$("span.given").draggable({
helper: "clone",
revert: "invalid"
});
makeDropText($("p.given span.w"));
});
p.given {
display: flex;
flex-wrap: wrap;
}
p.given span.w span.ui-icon {
cursor: pointer;
}
div.blanks {
display: inline-block;
min-width: 50px;
border-bottom: 2px solid #000000;
color: #000000;
}
div.blanks.ui-droppable-active {
min-height: 20px;
}
span.answers>b {
border-bottom: 2px solid #000000;
}
span.given {
margin: 5px;
}
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<div class="row">
<p class="given" contenteditable="true">Lorem Ipsum is simply dummy text of the printing and typesetting industry. [Lorem] Ipsum has been the industry's standard dummy text ever since the 1500s, Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</div>
<div class="divider"></div>
<div class="section">
<section>
<div class="card blue-grey ">
<div class="card-content white-text">
<div class="row">
<div class="col s12">
<span class="given btn-flat white-text red lighten-1" rel="1">the Santee, thDakota</span>
<span class="given btn-flat white-text red lighten-1" rel="2">America</span>
<span class="given btn-flat white-text red lighten-1" rel="3">Qatar</span>
<span class="given btn-flat white-text red lighten-1" rel="4">Philippines</span>
</div>
</div>
</div>
</div>
</section>
</div>
问题间歇性出现。
有时用户输入的文本又被删除了,原因在函数unChunkWords
:
这个函数只遍历元素(和class"w"),但它不会遍历可能出现在-中的纯文本节点在这些元素之间。在内容可编辑的元素中,用户确实可以在 元素之间的区域中键入文本。因此 unChunkWords
中的这个循环永远不会访问这样的文本,在数组中省略它 returns.
您可以将光标放在单词的末尾,space 之前,然后按向右箭头键来强制它发生。这要么将光标移动到下一个单词的开头,要么它没有明显移动(它只是移出了它所在的 span
)。无论哪种方式,您的光标现在都位于分隔两个词的文本节点中。键入内容并单击其他地方。 ...异常发生。
有很多方法可以避免这种情况。其中之一是使用 jQuery contents()
方法,该方法也收集文本节点。更改以下代码:
$(".w", tObj).each(function(i, el) {
if ($(el).hasClass("b")) {
words.push("[" + $(el).text().trim() + "]");
} else {
words.push($(el).text().trim());
}
});
...为此:
$(tObj).contents().each(function (i, el) {
if (el.nodeType !== 3 && !$(el).is(".w")) return; // Only regard ".w" or text nodes
if ($(el).hasClass("b")) {
words.push("[" + $(el).text().trim() + "]");
} else {
words.push($(el).text().trim());
}
});
现在您输入的文本不会从 words
中省略,即使您在作为内容可编辑元素的直接子元素的文本节点中键入它也是如此。
添加 spaces
您的代码添加 space 和 .join(" ")
,但未验证 p
元素的内容中的文本片段是否真的由白色 space 分隔。所以,我只抓取 all 内容,包括间距,然后将其连接起来。这样,您将获得与 p
元素中完全相同的单词分隔。
那么你的函数将是:
function unChunkWords(tObj) {
var words = "";
$(tObj).contents().each(function (i, el) {
if ($(el).hasClass("b")) {
words += "[" + $(el).text() + "]";
} else {
words += $(el).text();
}
});
return words.replace(/\s+/g, " ").trim();
}
免责声明:我只看过这个特别问题,指出你为什么有这个特别[=] 47=] 行为,以及如何解决它。这并不意味着现在您的代码可以在所有预期功能中正常工作,这超出了问题的范围。
我正在使用 jQuery UI 可拖动组件将 <span>
添加到可编辑的内容 <p>
。
预期的输出是,段落 <p>
应该是可编辑的,可拖动组件应该能够拖放到段落并且 <p>
的内容应该是可编辑的。我的代码有问题。当我在 <p>
中键入内容并单击外部 <p>
时。从段落中删除键入的单词。
我的代码如下:
$(function() {
function textWrapper(str, sp, btn) {
if (sp == undefined) {
sp = [0, 0];
}
var txt = "";
if (btn) {
txt = "<span class='w b'>" + str + "</span>";
} else {
txt = "<span class='w'>" + str + "</span>";
}
if (sp[0]) {
txt = " " + txt;
}
if (sp[1]) {
txt = txt + " ";
}
return txt;
}
function chunkWords(p) {
var words = p.split(" ");
words[0] = textWrapper(words[0], [0, 1]);
var i;
for (i = 1; i < words.length; i++) {
var re = /\[.+\]/;
if (re.test(words[i])) {
var b = makeTextBox(words[i].slice(1, -1));
words[i] = " " + b.prop("outerHTML") + " ";
} else {
if (words[0].indexOf(".")) {
words[i] = textWrapper(words[i], [1, 0]);
} else {
words[i] = textWrapper(words[i], [1, 1]);
}
}
}
return words.join("");
}
function unChunkWords(tObj) {
var words = [];
$(".w", tObj).each(function(i, el) {
console.log($(el).text(), $(el).attr("class"));
if ($(el).hasClass("b")) {
words.push("[" + $(el).text().trim() + "]");
} else {
words.push($(el).text().trim());
}
});
return words.join(" ");
}
function makeBtn(tObj) {
var btn = $("<span>", {
class: "ui-icon ui-icon-close"
}).appendTo(tObj);
}
function makeTextBox(txt) {
var sp = $("<span>", {
class: "w b"
}).html(txt);
makeBtn(sp);
return sp;
}
function makeDropText(obj) {
return obj.droppable({
drop: function(e, ui) {
var txt = ui.draggable.text();
var newSpan = textWrapper(txt, [1, 0], 1);
$(this).after(newSpan);
makeBtn($(this).next("span.w"));
makeDropText($(this).next("span.w"));
$("span.w.ui-state-highlight").removeClass("ui-state-highlight");
},
over: function(e, ui) {
$(this).add($(this).next("span.w")).addClass("ui-state-highlight");
},
out: function() {
$(this).add($(this).next("span.w")).removeClass("ui-state-highlight");
}
});
}
$("p.given").html(chunkWords($("p.given").text()));
$("p.given").on("click", ".b > .ui-icon", function() {
$(this).parent().remove();
});
$("p.given").blur(function() {
var w = unChunkWords($(this));
console.log(w);
$(this).html(chunkWords(w));
makeDropText($("p.given span.w"));
});
$("span.given").draggable({
helper: "clone",
revert: "invalid"
});
makeDropText($("p.given span.w"));
});
p.given {
display: flex;
flex-wrap: wrap;
}
p.given span.w span.ui-icon {
cursor: pointer;
}
div.blanks {
display: inline-block;
min-width: 50px;
border-bottom: 2px solid #000000;
color: #000000;
}
div.blanks.ui-droppable-active {
min-height: 20px;
}
span.answers>b {
border-bottom: 2px solid #000000;
}
span.given {
margin: 5px;
}
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<div class="row">
<p class="given" contenteditable="true">Lorem Ipsum is simply dummy text of the printing and typesetting industry. [Lorem] Ipsum has been the industry's standard dummy text ever since the 1500s, Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</div>
<div class="divider"></div>
<div class="section">
<section>
<div class="card blue-grey ">
<div class="card-content white-text">
<div class="row">
<div class="col s12">
<span class="given btn-flat white-text red lighten-1" rel="1">the Santee, thDakota</span>
<span class="given btn-flat white-text red lighten-1" rel="2">America</span>
<span class="given btn-flat white-text red lighten-1" rel="3">Qatar</span>
<span class="given btn-flat white-text red lighten-1" rel="4">Philippines</span>
</div>
</div>
</div>
</div>
</section>
</div>
问题间歇性出现。
有时用户输入的文本又被删除了,原因在函数unChunkWords
:
这个函数只遍历元素(和class"w"),但它不会遍历可能出现在-中的纯文本节点在这些元素之间。在内容可编辑的元素中,用户确实可以在 元素之间的区域中键入文本。因此 unChunkWords
中的这个循环永远不会访问这样的文本,在数组中省略它 returns.
您可以将光标放在单词的末尾,space 之前,然后按向右箭头键来强制它发生。这要么将光标移动到下一个单词的开头,要么它没有明显移动(它只是移出了它所在的 span
)。无论哪种方式,您的光标现在都位于分隔两个词的文本节点中。键入内容并单击其他地方。 ...异常发生。
有很多方法可以避免这种情况。其中之一是使用 jQuery contents()
方法,该方法也收集文本节点。更改以下代码:
$(".w", tObj).each(function(i, el) {
if ($(el).hasClass("b")) {
words.push("[" + $(el).text().trim() + "]");
} else {
words.push($(el).text().trim());
}
});
...为此:
$(tObj).contents().each(function (i, el) {
if (el.nodeType !== 3 && !$(el).is(".w")) return; // Only regard ".w" or text nodes
if ($(el).hasClass("b")) {
words.push("[" + $(el).text().trim() + "]");
} else {
words.push($(el).text().trim());
}
});
现在您输入的文本不会从 words
中省略,即使您在作为内容可编辑元素的直接子元素的文本节点中键入它也是如此。
添加 spaces
您的代码添加 space 和 .join(" ")
,但未验证 p
元素的内容中的文本片段是否真的由白色 space 分隔。所以,我只抓取 all 内容,包括间距,然后将其连接起来。这样,您将获得与 p
元素中完全相同的单词分隔。
那么你的函数将是:
function unChunkWords(tObj) {
var words = "";
$(tObj).contents().each(function (i, el) {
if ($(el).hasClass("b")) {
words += "[" + $(el).text() + "]";
} else {
words += $(el).text();
}
});
return words.replace(/\s+/g, " ").trim();
}
免责声明:我只看过这个特别问题,指出你为什么有这个特别[=] 47=] 行为,以及如何解决它。这并不意味着现在您的代码可以在所有预期功能中正常工作,这超出了问题的范围。