Además de la respuesta de Tim Downs , hice una solución que funciona incluso en oldIE:
var selectText = function() {
var range, selection;
if (document.body.createTextRange) {
range = document.body.createTextRange();
range.moveToElementText(this);
range.select();
} else if (window.getSelection) {
selection = window.getSelection();
range = document.createRange();
range.selectNodeContents(this);
selection.removeAllRanges();
selection.addRange(range);
}
};
document.getElementById('foo').ondblclick = selectText;
Probado en IE 8+, Firefox 3+, Opera 9+ y Chrome 2+. Incluso lo configuré en un complemento jQuery:
jQuery.fn.selectText = function() {
var range, selection;
return this.each(function() {
if (document.body.createTextRange) {
range = document.body.createTextRange();
range.moveToElementText(this);
range.select();
} else if (window.getSelection) {
selection = window.getSelection();
range = document.createRange();
range.selectNodeContents(this);
selection.removeAllRanges();
selection.addRange(range);
}
});
};
$('#foo').on('dblclick', function() {
$(this).selectText();
});
... y a quién le interesa, esto es lo mismo para todos los adictos al café:
jQuery.fn.selectText = ->
@each ->
if document.body.createTextRange
range = document.body.createTextRange()
range.moveToElementText @
range.select()
else if window.getSelection
selection = window.getSelection()
range = document.createRange()
range.selectNodeContents @
selection.removeAllRanges()
selection.addRange range
return
Actualizar:
Si desea seleccionar la página completa o el contenido de una región editable (marcada con contentEditable
), puede hacerlo mucho más simple cambiando ay designMode
usandodocument.execCommand
:
Hay un buen punto de partida en MDN y una pequeña documentación .
var selectText = function () {
document.execCommand('selectAll', false, null);
};
(funciona bien en IE6 +, Opera 9+, Firefoy 3+, Chrome 2+) http://caniuse.com/#search=execCommand
selectElementContents()
asetTimeout()
orequestAnimationFrame()
si se llama desde unonfocus
. Ver jsfiddle.net/rudiedirkx/MgASG/1/show