“. Select JS” Kod odpowiedzi

JavaScript Wybierz tekst wejściowy na fokusie

focusMethod = function getFocus() {           
  document.getElementById("myTextField").focus(); //select the input textfield and set the focus on it
}
Tartaud

Wybierz () w JavaScript

// select() in javascript
// add below code to your javascript file
function selectText() {
  const input = document.getElementById('text-box');
  input.focus();
  input.select();
}

// add below code to your html file
<input type="text" id="text-box" size="20" value="Hello world!">
<button onclick="selectText()">Select text</button>
Chetan Nada

JS Wybierz wszystko

// This will select all of the text in the textarea or input called element
element.select();
Uber-Dan

. Select JS

function selectText() {
  const input = document.getElementById('text-box');
  input.select();
}
Muddy Macaw

Odpowiedzi podobne do “. Select JS”

Pytania podobne do “. Select JS”

Więcej pokrewnych odpowiedzi na “. Select JS” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu