cleverfocus是一个智能的自动对焦jQuery插件,它使表单元素能够在没有焦点的情况下输入文本时自动获得焦点。
1.包括jquery.cleverfocus.js查询
脚本加载后最新的jQuery库。
- <script src="/path/to/cdn/jquery.slim.min.js"></script>
- <script src="/path/to/jquery.cleverfocus.js"></script>
2.调用函数聪明的焦点
在目标表单字段上,插件将完成其余操作。
- <input type="text" id="search_input" value="" />
- $(document).ready(function(){
- $('#search_input').cleverfocus({
- // options here
- });
- });
3.确定触发自动对焦功能的最小字符数。默认值:0。
- $(document).ready(function(){
- $('#search_input').cleverfocus({
- keypress_limit: 3
- });
- });
Â