首页 > Web开发 > 详细

jquery.min.js v1.10.3版本autocomplete方法会在text前添加搜索出多少项的文本信息 要去除

时间:2014-05-15 09:37:37      阅读:924      评论:0      收藏:0      [点我收藏+]

http://stackoverflow.com/questions/13011127/how-to-remove-change-jquery-ui-autocomplete-helper-text

 

How to remove/change JQuery UI Autocomplete Helper text?

 

It seems that this is a new feature in JQuery UI 1.9.0, because I used JQuery UI plenty of times before and this text never poped up.

Couldn‘t find anything related on the API documentation.

So using an basic autocomplete example with local source

$("#find-subj").autocomplete({
    source: availableTags
});

When the search matches it shows this related helper text:

‘1 result is available, use up and down arrow keys to navigate.‘

How can I disable it in a nice way, not by removing it with JQuery selectors.

7 Answers

 
 
 

 

I know this has been asnwered but just wanted to give an implementation example:

$("#find-subj").autocomplete({
    source: availableTags,
    messages:{
        noResults:‘‘,
        results:function(){}}});

--------------此方法能解决

jquery.min.js v1.10.3版本autocomplete方法会在text前添加搜索出多少项的文本信息 要去除,布布扣,bubuko.com

jquery.min.js v1.10.3版本autocomplete方法会在text前添加搜索出多少项的文本信息 要去除

原文:http://www.cnblogs.com/jcz1206/p/3729017.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!