单击文本框会选择所有数据。我目前的代码在所有文本框中选择。但我想把它应用到一个特定的盒子里。现在的代码:
$(document).ready(function() {
$("input:text").focus(function() {
$(this).select();
});
});
我只想将它应用于搜索框。搜索框代码如下:
<input name="q" id="searchBox" type="text" size="40" placeholder="Search..."/>