单击触发jquery.autocomplete的两种方法

简介: jquery.autocomplete的参数 minChars设置为0时,默认要双击才会触发jquery.autocomplete,如果想要单击触发的话,得进行一定的处理才行.下面讲下我知道的单击触发jquery.
jquery.autocomplete的参数 minChars设置为0时,默认要双击才会触发jquery.autocomplete,如果想要单击触发的话,得进行一定的处理才行.下面讲下我知道的单击触发jquery.autocomplete的两种方法

方法一:

绑定onclick事件=click():

<input name="test" onclick="$(this).click();" type="text" />

ie和谷歌下测试通过http://www.hainangy.com


方法二:

通用方法,修改源代码,把

}).click(function() {

// show select when clicking in a focused field

if ( hasFocus++ > 1 && !select.visible() ) {

onChange(0, true);

}

改成

}).click(function() {

// show select when clicking in a focused field

if ( ++hasFocus > 1 && !select.visible() ) {

onChange(0, true);

}

 

http://hi.baidu.com/aspxjsp/item/86eb895c4b5a8a3c94eb056c

目录
相关文章
|
3月前
|
JavaScript
jQuery 遍历 方法
jQuery 遍历 方法
37 5
|
2月前
|
XML JavaScript 数据格式
jquery中html()方法的使用
jquery中html()方法的使用
29 1
|
2月前
|
前端开发 JavaScript
jQuery - AJAX load() 方法
jQuery load() 方法是简单但强大的 AJAX 方法。
53 6
|
2月前
|
JavaScript 前端开发 Java
jQuery Autocomplete
jQuery Autocomplete
18 4
|
3月前
|
JavaScript 前端开发
jQuery 杂项方法
jQuery 杂项方法
35 2
|
3月前
|
JavaScript
jQuery 效果 方法
jQuery 效果 方法
16 3
|
3月前
|
JavaScript 前端开发
jQuery - noConflict() 方法
jQuery - noConflict() 方法
25 5
|
3月前
|
JSON 前端开发 JavaScript
jQuery AJAX 方法
jQuery AJAX 方法
36 1
|
3月前
|
XML 前端开发 JavaScript
jQuery HTML / CSS 方法
jQuery HTML / CSS 方法
18 2
|
2月前
|
存储 JSON JavaScript
jQuery 方法大全
jQuery 方法大全
16 0