Oprócz odpowiedzi Tima Downsa stworzyłem rozwiązanie, które działa nawet w 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;
Przetestowano w IE 8+, Firefox 3+, Opera 9+ i Chrome 2+. Nawet skonfigurowałem go we wtyczce 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();
});
... a kogo to interesuje, oto to samo dla wszystkich miłośników kawy:
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
Aktualizacja:
Jeśli chcesz zaznaczyć całą stronę lub zawartość edytowalnego regionu (oznaczonego flagą contentEditable
), możesz to zrobić znacznie prościej, przełączając się na designMode
i używając document.execCommand
:
W MDN jest dobry punkt wyjścia i niewielka dokumentacja .
var selectText = function () {
document.execCommand('selectAll', false, null);
};
(działa dobrze w IE6 +, Opera 9+, Firefoy 3+, Chrome 2+) http://caniuse.com/#search=execCommand
selectElementContents()
asetTimeout()
lubrequestAnimationFrame()
jeśli wywołano zonfocus
. Zobacz jsfiddle.net/rudiedirkx/MgASG/1/show