📜  javascript代码示例中的select()

📅  最后修改于: 2022-03-11 15:04:20.035000             🧑  作者: Mango

代码示例1
// 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