Le risposte elencate sono parziali secondo me. Ho collegato sotto due esempi di come farlo in Angular e con JQuery.
Questa soluzione ha le seguenti caratteristiche:
- funziona per tutti i browser che supportano JQuery, Safari, Chrome, IE, Firefox, ecc
- Lavori per la PhoneGap/Cordova: Android e iOS.
- Seleziona tutto solo una volta dopo l'immissione viene messa a fuoco fino alla sfocatura successiva e quindi mette a fuoco
- È possibile utilizzare più ingressi e non eseguire il glitch.
- direttiva angolare ha un grande ri-utilizzo è sufficiente aggiungere la direttiva select-all-on-click
- JQuery può essere modificato facilmente
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);
}
}
});
angolare: 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;
});
}
};
}]);
fonte
2015-09-10 12:13:49
Un approccio migliore è quello di utilizzare un '
O anche usare un segnaposto se stai lavorando in un moderno progetto HTML5. –