“Obtenha texto selecionado JS” Respostas de código

Obtenha texto de opção selecionada JS

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

Obtenha texto selecionado JS

// Get highlighted text this way:

window.getSelection().toString()
Tame Toad

Obtenha JavaScript de entrada de texto selecionada

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

Respostas semelhantes a “Obtenha texto selecionado JS”

Perguntas semelhantes a “Obtenha texto selecionado JS”

Mais respostas relacionadas para “Obtenha texto selecionado JS” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código