1
這是小提琴鏈接 link如何點擊內容編輯的DIV然後點擊期內保留焦點
在此我點擊跨度追加到div的內容的代碼,但我想要的,而不是追加它插入到光標的特定位置。
document.querySelector('.selectable-icons').addEventListener('click', function(e) {
document.querySelector('[contenteditable]').appendChild(e.target.cloneNode(true));
});
document.querySelector('div').addEventListener('keydown', function(event) {
// Check for a backspace
if (event.which == 8) {
s = window.getSelection();
r = s.getRangeAt(0)
el = r.startContainer.parentElement
// Check if the current element is the .label
if (el.classList.contains('label')) {
// Check if we are exactly at the end of the .label element
if (r.startOffset == r.endOffset && r.endOffset == el.textContent.length) {
// prevent the default delete behavior
event.preventDefault();
if (el.classList.contains('highlight')) {
// remove the element
el.remove();
} else {
el.classList.add('highlight');
}
return;
}
}
}
event.target.querySelectorAll('span.label.highlight').forEach(function(el) { el.classList.remove('highlight');})
});
[contenteditable] {
border: 1px solid #000;
margin: 0.4em 0;
line-height: 1.4em;
-webkit-appearance: textfield;
appearance: textfield;
}
img {
vertical-align: top;
max-height: 1.4em;
max-width: 1.4em;
}
.selectable-icons img {
cursor: pointer;
}
span.label.highlight {
background: #E1ECF4;
border: 1px dotted #39739d;
}
<p>Just click on an icon to add it.</p>
<div class="custom-input">
<div class="selectable-icons">
<span class="label"> Ingredient1 </span>
<span class="label">INGREDIENT 2</span>
<span class="label">INGREDIENT 3</span>
</div>
<div contenteditable="true">
You can type here. Add an icon.
</div>
</div>
我嘗試了一個解決方案,這link
在所提供的鏈接提示有我使用範圍,而不是一個按鈕。當我點擊跨度時
window.getSelection
返回帶有onClick事件的span元素。焦點轉移到該範圍
類似[this](https://stackoverflow.com/questions/1064089/inserting-a-text-where-cursor-is-using-javascript-jquery)應該爲你工作。 –
單擊事件在範圍 –
是的,我知道。你想在當前光標位置添加點擊的項目嗎? –