jQuery UI Autocomplete - get data from txt file

后端 未结 2 1623
半阙折子戏
半阙折子戏 2020-12-10 23:08

I\'m jQuery beginner trying to make jQuery UI Autocomplete get data from txt file. Txt format is simple:

user1
user2
user3
etc.

2条回答
  •  感动是毒
    2020-12-10 23:45

    From the documentation:

    Source
    An Array of Strings:
    [ "Choice1", "Choice2" ]

    An Array of Objects with label and value properties:
    [ { label: "Choice1", value: "value1" }, ... ]

    You need to amend your text file to be in this format:

    ["user1","user2","user3"]
    

    Then change your jQuery to this:

    $( "#userLogin" ).autocomplete({
        source: 'users.txt'
    });
    

提交回复
热议问题