คำตอบที่ระบุไว้เป็นบางส่วนตามฉัน ฉันได้ลิงก์ด้านล่างสองตัวอย่างของวิธีการทำเช่นนี้ใน Angular และกับ JQuery
วิธีนี้มีคุณสมบัติดังต่อไปนี้:
- ใช้งานได้กับเบราว์เซอร์ทั้งหมดที่รองรับ JQuery, Safari, Chrome, IE, Firefox และอื่น ๆ
- ใช้งานได้กับ Phonegap / Cordova: Android และ IOs
- เลือกทั้งหมดเพียงครั้งเดียวหลังจากที่อินพุทได้รับการโฟกัสจนกระทั่งเบลอถัดไปจากนั้นทำการโฟกัส
- สามารถใช้หลายอินพุตได้และไม่ผิดพลาด
- คำสั่งเชิงมุมมีการใช้งานที่ยอดเยี่ยมเพียงเพิ่มคำสั่ง select-all-on-click
- JQuery สามารถแก้ไขได้อย่างง่ายดาย
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);
}
}
});
เชิงมุม:
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>
value
คุณสามารถใช้ JS และ CSS เพื่อทำให้มันดูเหมือนกัน แต่ไม่ต่อต้านความหมาย dorward.me.uk/tmp/label-work/example.htmlมีตัวอย่างการใช้ jQuery