仪表盘
版本库
文件存储
活动
搜索
登录
admin
/
lancatalog
廊坊-资源目录系统
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
2
13693261870
2022-09-16
653761a31dfeb50dd3d007e892d69c90bf0cdafc
[~admin/lancatalog.git]
/
src
/
main
/
resources
/
static
/
js
/
findPinyinByKeyWord.js
1
2
3
4
5
6
7
8
function findPinyinByKeyWord(){
var title = $("#title").val();
$("#title").autocomplete({
source: '/res/findPinyinByKeyWord?keyWord='+encodeURI(encodeURI(title)), //请求的url
minLength: 1
});
}