Las respuestas enumeradas son parciales según yo. He vinculado a continuación dos ejemplos de cómo hacer esto en Angular y con JQuery.
Esta solución tiene las siguientes características:
- Funciona para todos los navegadores que admiten JQuery, Safari, Chrome, IE, Firefox, etc.
- Funciona para Phonegap / Cordova: Android e IOs.
- Solo selecciona todo una vez después de que la entrada obtiene el foco hasta el próximo desenfoque y luego enfoca
- Se pueden usar múltiples entradas y no falla.
- La directiva angular tiene una gran reutilización, simplemente agregue la directiva select-all-on-click
- JQuery se puede modificar fácilmente
JQuery:
http://plnkr.co/edit/VZ0o2FJQHTmOMfSPRqpH?p=preview
$("input").blur(function() {
if ($(this).attr("data-selected-all")) {
//Remove atribute to allow select all again on focus
$(this).removeAttr("data-selected-all");
}
});
$("input").click(function() {
if (!$(this).attr("data-selected-all")) {
try {
$(this).selectionStart = 0;
$(this).selectionEnd = $(this).value.length + 1;
//add atribute allowing normal selecting post focus
$(this).attr("data-selected-all", true);
} catch (err) {
$(this).select();
//add atribute allowing normal selecting post focus
$(this).attr("data-selected-all", true);
}
}
});
Angular:
http://plnkr.co/edit/llcyAf?p=preview
var app = angular.module('app', []);
//add select-all-on-click to any input to use directive
app.directive('selectAllOnClick', [function() {
return {
restrict: 'A',
link: function(scope, element, attrs) {
var hasSelectedAll = false;
element.on('click', function($event) {
if (!hasSelectedAll) {
try {
//IOs, Safari, thows exception on Chrome etc
this.selectionStart = 0;
this.selectionEnd = this.value.length + 1;
hasSelectedAll = true;
} catch (err) {
//Non IOs option if not supported, e.g. Chrome
this.select();
hasSelectedAll = true;
}
}
});
//On blur reset hasSelectedAll to allow full select
element.on('blur', function($event) {
hasSelectedAll = false;
});
}
};
}]);
<label>
para la etiqueta y no elvalue
. Puede usar JS y CSS para que se vea igual, sin ser tan antisentico. dorward.me.uk/tmp/label-work/example.html tiene un ejemplo usando jQuery.