แก้ไขได้โดยตั้งค่าคาเร็ตที่ส่วนท้ายของข้อความ (ข้ามเบราว์เซอร์)


111

เอาต์พุตในChrome :

<div id="content" contenteditable="true" style="border:1px solid #000;width:500px;height:40px;">
    hey
    <div>what's up?</div>
<div>
<button id="insert_caret"></button>

ฉันเชื่อในFFมันจะมีลักษณะดังนี้:

hey
<br />
what's up?

และในIE :

hey
<p>what's up?</p>

น่าเสียดายที่ไม่มีวิธีที่ดีในการสร้างมันขึ้นมาเพื่อให้ทุกเบราว์เซอร์แทรก<br />แท็กแทน div หรือ p หรืออย่างน้อยฉันก็ไม่พบสิ่งใดทางออนไลน์


อย่างไรก็ตามสิ่งที่ฉันพยายามทำในตอนนี้คือเมื่อฉันกดปุ่มฉันต้องการให้ตั้งเครื่องหมายคาเร็ตไว้ที่ท้ายข้อความดังนั้นควรมีลักษณะดังนี้:

hey
what's up?|

วิธีการทำเช่นนี้จึงทำงานในเบราว์เซอร์ทั้งหมด ?

ตัวอย่าง:

$(document).ready(function()
{
    $('#insert_caret').click(function()
    {
        var ele = $('#content');
        var length = ele.html().length;

        ele.focus();

        //set caret -> end pos
     }
 }

คำตอบ:


282

ฟังก์ชันต่อไปนี้จะทำในเบราว์เซอร์หลัก ๆ ทั้งหมด:

function placeCaretAtEnd(el) {
    el.focus();
    if (typeof window.getSelection != "undefined"
            && typeof document.createRange != "undefined") {
        var range = document.createRange();
        range.selectNodeContents(el);
        range.collapse(false);
        var sel = window.getSelection();
        sel.removeAllRanges();
        sel.addRange(range);
    } else if (typeof document.body.createTextRange != "undefined") {
        var textRange = document.body.createTextRange();
        textRange.moveToElementText(el);
        textRange.collapse(false);
        textRange.select();
    }
}

placeCaretAtEnd( document.querySelector('p') );
p{ padding:.5em; border:1px solid black; }
<p contentEditable>foo bar </p>

วางเครื่องหมายที่เริ่มต้นเป็นเหมือนกันเกือบ: collapse()มันก็ต้องเปลี่ยนบูลีนผ่านเข้าไปในสายไป นี่คือตัวอย่างที่สร้างฟังก์ชันสำหรับการวางคาเร็ตที่จุดเริ่มต้นและตอนท้าย:

function createCaretPlacer(atStart) {
    return function(el) {
        el.focus();
        if (typeof window.getSelection != "undefined"
                && typeof document.createRange != "undefined") {
            var range = document.createRange();
            range.selectNodeContents(el);
            range.collapse(atStart);
            var sel = window.getSelection();
            sel.removeAllRanges();
            sel.addRange(range);
        } else if (typeof document.body.createTextRange != "undefined") {
            var textRange = document.body.createTextRange();
            textRange.moveToElementText(el);
            textRange.collapse(atStart);
            textRange.select();
        }
    };
}

var placeCaretAtStart = createCaretPlacer(true);
var placeCaretAtEnd = createCaretPlacer(false);

ไม่ทำงานกับ Chrome เนื่องจาก createTextRange ไม่ใช่ฟังก์ชันมาตรฐาน ดูstackoverflow.com/a/41743191/700206
whitneyland

@Lee: ทำงานได้ดีใน Chrome ซึ่งรองรับwindow.getSelectionและdocument.createRange. createTextRangeสาขาสำหรับรุ่นเก่าของ Internet Explorer
Tim Down

ในขณะเขียนwindow.getSelectionไม่รองรับ 0.29% ของเบราว์เซอร์ทั้งหมด (IE> 8) ดู: caniuse.com/#search=window.getSelection
w.stoettinger

@TimDown งานนี้ +1 แต่คุณสามารถอธิบายโค้ดโดยเพิ่มความคิดเห็นได้ไหม จะดีมาก
shinobi

มีใครรู้วิธีตั้งค่าคาเร็ตไปยังจุดสิ้นสุด (ใช้รหัสนี้) เมื่อพยายามกำหนดเป้าหมายองค์ประกอบของ iframe> body? ธาตุกายมีeditablecontent="true"... ? placeCaretAtEnd(this);จะไม่ทำงานสำหรับฉัน
RobbTe

6

น่าเสียดายที่คำตอบที่ยอดเยี่ยมของ Tim ใช้ได้ผลสำหรับฉันสำหรับการวางในตอนท้ายเท่านั้นสำหรับการวางในตอนเริ่มต้นฉันต้องแก้ไขเล็กน้อย

function setCaret(target, isStart) {
  const range = document.createRange();
  const sel = window.getSelection();
  if (isStart){
    const newText = document.createTextNode('');
    target.appendChild(newText);
    range.setStart(target.childNodes[0], 0);
  }
  else {
    range.selectNodeContents(target);
  }
  range.collapse(isStart);
  sel.removeAllRanges();
  sel.addRange(range);
  target.focus();
  target.select();
}

ไม่แน่ใจ แต่ถ้าfocus()และselect()มีความจำเป็นจริง


คุณยังแนะนำไลบรารีภายนอก หากคุณไม่คิดว่าจำเป็นต้องโฟกัสและเลือกทำไมไม่แสดงความคิดเห็นในบรรทัดและทดสอบ?
dotnethaggis

ขอบคุณลบ jquery ฉันจำได้ว่าฉันมีผลลัพธ์ที่ขัดแย้งกันฉันจะพยายามแยกมันอีกครั้ง
สลัว

1

ตัวอย่าง (สด) นี้แสดงฟังก์ชันง่ายๆสั้น ๆsetCaretAtStartEndซึ่งรับสองอาร์กิวเมนต์ โหนด (แก้ไขได้) เพื่อวางคาเร็ตที่ & บูลีนระบุตำแหน่งที่จะวาง (จุดเริ่มต้นหรือจุดสิ้นสุดของโหนด)

const editableElm = document.querySelector('[contenteditable]');

document.querySelectorAll('button').forEach((elm, idx) => 
  elm.addEventListener('click', () => {
    editableElm.focus()
    setCaretAtStartEnd(editableElm, idx) 
  })
)

function setCaretAtStartEnd( node, atEnd ){
  const sel = document.getSelection();
  node = node.firstChild;

  if( sel.rangeCount ){
      ['Start', 'End'].forEach(pos =>
        sel.getRangeAt(0)["set" + pos](node, atEnd ? node.length : 0)
      )
  }
}
[contenteditable]{ padding:5px; border:1px solid; }
<h1 contenteditable>Place the caret anywhere</h1>
<br>
<button>Move caret to start</button>
<button>Move caret to end</button>


-1

หากคุณใช้คอมไพเลอร์การปิดของ Google คุณสามารถทำสิ่งต่อไปนี้ได้ (ค่อนข้างง่ายจากคำตอบของ Tim)

function placeCaretAtEnd(el) {
    el.focus();
    range = goog.dom.Range.createFromNodeContents(el);
    range.collapse(false);
    range.select();
}

นี่คือสิ่งเดียวกันใน ClojureScript:

(defn place-caret-at-end [el] 
   (.focus el)
   (doto (.createFromNodeContents goog.dom.Range el)
         (.collapse false)
         .select))

ฉันได้ทดสอบสิ่งนี้ใน Chrome, Safari และ FireFox ไม่แน่ใจเกี่ยวกับ IE ...


1
range = goog.dom.Range.createFromNodeContents (el); goog.dom คืออะไร?
Anh Tú

สิ่งนี้ได้ผลสำหรับฉัน @ AnhTú: goog.dom เป็นเนมสเปซที่จัดทำโดยการปิดไลบรารี
David Beneš
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.