Tim Downs cevabına ek olarak , oldIE'de bile çalışan bir çözüm geliştirdim:
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;
IE 8+, Firefox 3+, Opera 9+ ve Chrome 2+ ile test edilmiştir. Ben bile bir jQuery eklentisine kurdum:
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();
});
... ve kimin ilgisini çekti, işte tüm kahve bağımlıları için aynı şey:
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
Güncelleme:
Düzenlenebilir bir bölgenin (ile işaretli contentEditable
) tüm sayfayı veya içeriğini seçmek istiyorsanız , aşağıdakilere geçip designMode
kullanarak bunu çok daha basit bir şekilde yapabilirsiniz document.execCommand
:
MDN'de iyi bir başlangıç noktası ve küçük bir dokümantasyon var .
var selectText = function () {
document.execCommand('selectAll', false, null);
};
(IE6 +, Opera 9+, Firefoy 3+, Chrome 2+ ile iyi çalışır) http://caniuse.com/#search=execCommand
selectElementContents()
için birsetTimeout()
veyarequestAnimationFrame()
bironfocus
. Bkz jsfiddle.net/rudiedirkx/MgASG/1/show