“JavaScript obtenga texto seleccionado” Código de respuesta

Obtener texto de la opción seleccionada JS

var sel = document.getElementById("box1");
var text= sel.options[sel.selectedIndex].text;
Encouraging Elephant

Obtener texto seleccionado JS

// Get highlighted text this way:

window.getSelection().toString()
Tame Toad

Obtenga el valor o texto del elemento Seleccionar usando JavaScript

<select id="ddlViewBy">
  <option value="1">test1</option>
  <option value="2" selected="selected">test2</option>
  <option value="3">test3</option>
</select>
Running this code:

var e = document.getElementById("ddlViewBy");
var strUser = e.value;
Would make strUser be 2. If what you actually want is test2, then do this:

var e = document.getElementById("ddlViewBy");
var strUser = e.options[e.selectedIndex].text;
Manohar Shrestha

Obtener entrada de texto seleccionada JavaScript

function disp() {
  var text = document.getElementById("text");
  var t = text.value.substr(text.selectionStart, text.selectionEnd - text.selectionStart);
  alert(t);
}
Zealous Zebra

JavaScript obtenga texto seleccionado

const getSelectedText = () => window.getSelection().toString();

getSelectedText();
Rashid Siddique

Respuestas similares a “JavaScript obtenga texto seleccionado”

Preguntas similares a “JavaScript obtenga texto seleccionado”

Más respuestas relacionadas con “JavaScript obtenga texto seleccionado” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código