HTMLInputElement: selectionEnd-Eigenschaft
Die selectionEnd
-Eigenschaft des HTMLInputElement
-Interfaces ist eine Zahl, die das End-Index des ausgewählten Textes darstellt. Wenn keine Auswahl besteht, gibt sie den Offset des Zeichens unmittelbar nach der aktuellen Cursorposition im Texteingabefeld zurück.
Hinweis: Gemäß der WHATWG-Formularspezifikation gilt die selectionEnd
-Eigenschaft nur für Eingaben der Typen Text, Suche, URL, Tel und Passwort. In modernen Browsern wird eine Ausnahme ausgelöst, wenn die selectionEnd
-Eigenschaft bei anderen Eingabetypen gesetzt wird. Zusätzlich gibt diese Eigenschaft null
zurück, wenn auf die selectionEnd
-Eigenschaft von Nicht-Texteingabeelementen zugegriffen wird.
Wenn selectionEnd
kleiner ist als selectionStart
, werden beide als der Wert von selectionEnd
behandelt.
Wert
Eine nicht negative Zahl.
Beispiele
HTML
<!-- using selectionEnd on non text input element -->
<label for="color">selectionStart property on type=color</label>
<input id="color" type="color" />
<!-- using selectionEnd on text input element -->
<fieldset>
<legend>selectionEnd property on type=text</legend>
<label for="pin">Input PIN</label>
<input type="text" id="pin" value="impossible PIN: 102-12-145" />
<button id="pin-btn" type="button">PIN correction</button>
</fieldset>
JavaScript
const colorEnd = document.getElementById("color");
const text = document.querySelector("#pin");
const pinBtn = document.querySelector("#pin-btn");
const validPinChecker = /[^\d{3}-\d{2}-\d{3}]/g;
const selectionEnd = text.value.length;
const selectedText = text.value.substring(text.selectionStart, selectionEnd);
pinBtn.addEventListener("click", () => {
const correctedText = selectedText.replace(validPinChecker, "");
text.value = correctedText;
});
// open browser console to verify output
console.log(colorEnd.selectionEnd); // Output : null
Ergebnis
Spezifikationen
Specification |
---|
HTML Standard # dom-textarea/input-selectionend |
Browser-Kompatibilität
BCD tables only load in the browser
Siehe auch
HTMLTextAreaElement.selectionEnd
-EigenschaftHTMLInputElement.selectionStart
-EigenschaftHTMLInputElement.setSelectionRange
-Methode