当文本框获得焦点时,将选择文本框的所有内容的 Vanilla JS 或 jQuery 解决方案是什么?
$(document).ready(function() { $("input:text").focus(function() { $(this).select(); } ); });