select2 外掛程式載入後端資料

2021-09-27 13:38:53 字數 1829 閱讀 6702

//html

全部

function

selectroomid(select)

return

query;

},processresults:

function

(data, params) ;

},cache:

true

},

//options

language: "zh-cn",

placeholder: '請輸入房間號',

allowclear:

true

, width: '300px',

//鍵盤選擇事件

escapemarkup: function

(markup) ,

minimuminputlength: 1,

templateresult: formatrepo,

templateselection: formatreposelection

});}//

資料列表

function

formatrepo(repo)

var markup = "

"; markup = ""

"" repo.roompath "

";

return

markup;}//

選擇填入內容和返回字段

function

formatreposelection(repo)

//呼叫

var roomids = $('#roomlist');

selectroomid(roomids);

//這裡是post請求,傳參為json(上面是get請求)

function

selectroomid(select) ;

return

json.stringify(paramss);

},processresults:

function

(data, params) ;

},cache:

true

},

//options

language: "zh-cn",

placeholder: '請輸入房間號',

allowclear:

true

, width: '300px',

//鍵盤選擇事件

escapemarkup: function

(markup) ,

minimuminputlength: 1,

templateresult: formatrepo,

templateselection: formatreposelection

});}//

資料列表

function

formatrepo(repo)

var markup = "

"; markup = ""

"" repo.roompath "

";

return

markup;}//

選擇填入內容和返回字段

function

formatreposelection(repo)

更多專業前端知識,請上

【猿2048】www.mk2048.com

前端外掛程式之Select2使用

工欲善其事,必先利其器 select2是一款基於jquery的下拉列表外掛程式,主要用來優化select,支援單選和多選,同時也支援分組顯示 列表檢索 遠端獲取資料等眾多好用的功能 需要用到的js和css檔案位於專案 下的dist目錄中,需要將這個目錄中的對應檔案放入你的專案裡,這一步不贅述 引入c...

select2 下拉列表外掛程式

如何使用select2?1.1 通過cdn引用 將以下兩行 新增到html頁面,即完成了select2的引入 注意 還需引入jquery支援select2的使用 1.2 通過離線引用 1.2.1 引入js資源庫 因此引入路徑為 js select2.min.js 1.2.2 引入css樣式 sele...

select2 外掛程式使用注意事項

有問題可以參考select2的官方文件 select2 或者 github select2 position val null trigger change position為自己的select控制項的id值placeholder js example placeholder single sele...