📅  最后修改于: 2022-03-11 15:04:20.035000             🧑  作者: Mango
// select() in javascript
// add below code to your javascript file
function selectText() {
const input = document.getElementById('text-box');
input.focus();
input.select();
}
// add below code to your html file