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