Além da resposta de Tim Downs , criei uma solução que funciona até no antigo IE:
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;
Testado em IE 8+, Firefox 3+, Opera 9+ e Chrome 2+. Até eu o configurei em um 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 quem está interessado em, aqui está o mesmo para todos os viciados em 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
Atualizar:
Se quiser selecionar a página inteira ou o conteúdo de uma região editável (marcada com contentEditable
), você pode fazer isso de forma muito mais simples alternando para designMode
e usando document.execCommand
:
Há um bom ponto de partida no MDN e uma pequena documentação .
var selectText = function () {
document.execCommand('selectAll', false, null);
};
(funciona bem no IE6 +, Opera 9+, Firefoy 3+, Chrome 2+) http://caniuse.com/#search=execCommand
selectElementContents()
asetTimeout()
ourequestAnimationFrame()
se for chamado deonfocus
. Veja jsfiddle.net/rudiedirkx/MgASG/1/show