Project Icon

jquery-autocompleter

优化表单输入体验的实用工具

jquery-autocompleter是一款功能全面的jQuery自动完成插件。它支持远程和本地数据源,具备缓存机制以优化性能,并支持自定义模板和样式。该插件提供多种配置选项,包括结果数量限制、延迟加载和键盘导航等。作为一个易于集成的工具,jquery-autocompleter能有效提升各类Web项目中的表单输入体验。

jQuery Autocompleter Plugin

Demo

Here: Example with Crayola colors.

Usage

Installation

npm:

npm install --save jquery-autocompleter

Yarn:

yarn add jquery-autocompleter

Add plugin to your project

  • include jQuery:

    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
    
  • include plugin's code:

    <!-- Styles -->
    <link rel="stylesheet" href="css/jquery.autocompleter.css" />
    
    <!-- Scripts -->
    <script src="js/jquery.autocompleter.min.js"></script>
    
  • call the plugin:

    $("input").autocompleter({
      /* options */
    });
    

Examples

  • remote url

    $(function () {
      $("input").autocompleter({ source: "path/to/get_data_request" });
    });
    
  • plain

    var data = [
      { value: 1, label: "one" },
      { value: 2, label: "two" },
      { value: 3, label: "three" },
    ];
    
    $(function () {
      $("input").autocompleter({ source: data });
    });
    

Options

Autocompleter has the following options:

NameTypeDescriptionDeafult
sourcestr, objURL to the server or a local objectnull
asLocalboolParse remote response as local sourcefalse
emptyboolLaunch if value is emptytrue
limitintNumber of results to be displayed10
minLengthintMinimum length for autocompleter0
delayintFew milliseconds to defer the request0
customClassarrayArray with custom classes for autocompleter element[]
cacheboolSave xhr data to localStorage to avoid the repetition of requeststrue
cacheExpiresintlocalStorage data lifetime in sec (0 to disable cache expire)86400
focusOpenboolLaunch autocompleter when input gets focustrue
enterSelectboolAllows to select using enter keytrue
hintboolAdd hint to input with first matched label, correct styles should be installedfalse
selectFirstboolIf set to true, first element in autocomplete list will be selected automatically, ignore if changeWhenSelect is onfalse
changeWhenSelectboolAllows to change input value using arrow keys navigation in autocomplete listtrue
highlightMatchesboolThis option defines <strong> tag wrap for matches in autocomplete resultsfalse
ignoredKeyCodearrayArray with ignorable keycodes, by default: 9, 13, 17, 19, 20, 27, 33, 34, 35, 36, 37, 39, 44, 92, 113, 114, 115, 118, 119, 120, 122, 123, 144, 145[]
customLabelstrThe name of object's property which will be used as a labelfalse
customValuestrThe name of object's property which will be used as a valuefalse
onBeforeSendfunctionThis function is triggered before an ajax request$.noop
onBeforeShowfunctionThis function is triggered when the list is ready to be shown$.noop
onEmptyfunctionIf data list if empty, trigger this function$.noop
onItemfunctionThis function is triggered when each item is being prepared to be shown$.noop
onListOpenfunctionThis function is triggered when the list is shown$.noop
onListClosefunctionThis function is triggered when the list is hidden$.noop
onBeforeLaunchfunctionThe event was triggered before the new request (including local cache)$.noop
templatestrCustom template for list items. For example: <span>{{ label }} is {{ customPropertyFromSource }}</span>. Template appends to .autocompleter-item.false
offsetstrSource response offset, for example: "response.items.posts".
@deprecated use format instead
false
formatfunctionFormat response payload to return source datanull
combinefunctionReturns an object which extends ajax data. Useful if you want to pass some additional server options$.noop
callbackfunctionSelect value callback function. Arguments: value, index, object$.noop

Methods

Change option after plugin is defined

$("#input").autocompleter("option", data);

For example:

$("#input").autocompleter("option", {
  limit: 5,
  template:
    '<img src="{{ image }}" alt="Image for autocompleter list item" /> {{ label }}',
});

Open list

$("#input").autocompleter("open");

Close list

$("#input").autocompleter("close");

Destroy plugin

$("#input").autocompleter("destroy");

Clear all cache

$.autocompleter("clearCache");

Set defaults

$.autocompleter("defaults", {
  customClass: "myClassForAutocompleter",
});

One more example

Autocompleter for the first name input with caching, match highlighting and 5 results limit. Remote response depends on a gender:

Form markup

<fieldset>
  <label>Male</label>
  <input type="radio" name="gender" value="male" checked="checked" />

  <label>Female</label>
  <input type="radio" name="gender" value="female" />

  <label>Other</label>
  <input type="radio" name="gender" value="other" />

  <label>First Name</label>
  <input type="text" name="firstname" id="firstname" />
</fieldset>

Code

$(function () {
  $("#firstname").autocompleter({
    source: "https://EXAMPLE_API_ENDPOINT.com/api/search/name",
    limit: 5,
    cache: true,
    combine: function (params) {
      var gender = $("input:radio[name=gender]:checked").val();

      // passing params to match endpoint
      return {
        q: params.query,
        count: params.limit,
        gender: gender,
      };
    },
    format: function (data) {
      // map response data to match autocompleter
      return data.entries.map(function (item) {
        return {
          label: item.name,
          value: item.slug,
        };
      });
    },
    callback: function (value, index, object) {
      console.log(
        "Value " + value + " are selected (with index " + index + ")."
      );
      console.log(object);
    },
  });
});

Markup

div (node) -> ul (list) -> li (item).

<div class="autocompleter" id="autocompleter-1">
  <ul class="autocompleter-list">
    <li class="autocompleter-item">First</li>
    <!-- ... -->
    <li class="autocompleter-item">Last</li>
  </ul>
</div>
项目侧边栏1项目侧边栏2
推荐项目
Project Cover

豆包MarsCode

豆包 MarsCode 是一款革命性的编程助手,通过AI技术提供代码补全、单测生成、代码解释和智能问答等功能,支持100+编程语言,与主流编辑器无缝集成,显著提升开发效率和代码质量。

Project Cover

AI写歌

Suno AI是一个革命性的AI音乐创作平台,能在短短30秒内帮助用户创作出一首完整的歌曲。无论是寻找创作灵感还是需要快速制作音乐,Suno AI都是音乐爱好者和专业人士的理想选择。

Project Cover

白日梦AI

白日梦AI提供专注于AI视频生成的多样化功能,包括文生视频、动态画面和形象生成等,帮助用户快速上手,创造专业级内容。

Project Cover

有言AI

有言平台提供一站式AIGC视频创作解决方案,通过智能技术简化视频制作流程。无论是企业宣传还是个人分享,有言都能帮助用户快速、轻松地制作出专业级别的视频内容。

Project Cover

Kimi

Kimi AI助手提供多语言对话支持,能够阅读和理解用户上传的文件内容,解析网页信息,并结合搜索结果为用户提供详尽的答案。无论是日常咨询还是专业问题,Kimi都能以友好、专业的方式提供帮助。

Project Cover

讯飞绘镜

讯飞绘镜是一个支持从创意到完整视频创作的智能平台,用户可以快速生成视频素材并创作独特的音乐视频和故事。平台提供多样化的主题和精选作品,帮助用户探索创意灵感。

Project Cover

讯飞文书

讯飞文书依托讯飞星火大模型,为文书写作者提供从素材筹备到稿件撰写及审稿的全程支持。通过录音智记和以稿写稿等功能,满足事务性工作的高频需求,帮助撰稿人节省精力,提高效率,优化工作与生活。

Project Cover

阿里绘蛙

绘蛙是阿里巴巴集团推出的革命性AI电商营销平台。利用尖端人工智能技术,为商家提供一键生成商品图和营销文案的服务,显著提升内容创作效率和营销效果。适用于淘宝、天猫等电商平台,让商品第一时间被种草。

Project Cover

AIWritePaper论文写作

AIWritePaper论文写作是一站式AI论文写作辅助工具,简化了选题、文献检索至论文撰写的整个过程。通过简单设定,平台可快速生成高质量论文大纲和全文,配合图表、参考文献等一应俱全,同时提供开题报告和答辩PPT等增值服务,保障数据安全,有效提升写作效率和论文质量。

投诉举报邮箱: service@vectorlightyear.com
@2024 懂AI·鲁ICP备2024100362号-6·鲁公网安备37021002001498号