Oltre alla risposta di Tim Downs , ho realizzato una soluzione che funziona anche in 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;
Testato in IE 8+, Firefox 3+, Opera 9+ e Chrome 2+. Anche io l'ho configurato in un plugin 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();
});
... e chi è interessato, ecco lo stesso per tutti i drogati di caffè:
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
Aggiornare:
Se desideri selezionare l'intera pagina o il contenuto di un'area modificabile (contrassegnata con contentEditable
), puoi farlo molto più semplice passando a designMode
e utilizzandodocument.execCommand
:
C'è un buon punto di partenza in MDN e una piccola documentazione .
var selectText = function () {
document.execCommand('selectAll', false, null);
};
(funziona bene in IE6 +, Opera 9+, Firefoy 3+, Chrome 2+) http://caniuse.com/#search=execCommand
selectElementContents()
in unsetTimeout()
orequestAnimationFrame()
se chiamato da unonfocus
. Vedi jsfiddle.net/rudiedirkx/MgASG/1/show