原生js编写autoComplete插件
作者:cangowu 发布时间:2024-05-09 10:37:43
标签:js,autoComplete,插件
最近有提关于下拉选项过多的时候,希望输入关键词,可以搜索内容的需求,但是之前项目太赶,所以也就没有来得及做,因为希望用原生js写一些内容,所以插件是采用了原生js写的思路如下
第一步:fnInit实现初始化一些字段
第二步:加载搜索框的div
第三步:实现search功能,删除原节点并加载新节点
第四步:点击或者回车的时候设置value
代码:
autoComplete.js
/**
* @summary AutoComplete
* @description 输入框自动检索下拉选项
* @version 0.0.1
* @file autoComplete.js
* @author cangowu
* @contact 1138806090@qq.com
* @copyright Copyright 2016 cangoWu.
*
* 这是一个基于原生js的自动完成搜索的下拉输入框,
* 可以通过移动鼠标上下键回车以及直接用鼠标点击
* 选中搜索的选项,在一些关键的地方都有注释
*
* 实例参见:
* CSDN博客:http://blog.csdn.net/wzgdjm/article/details/51122615
* Github:https://github.com/cangowu/autoComplete
*
*/
(function () {
function AutoComplete() {
if (!(this instanceof AutoComplete)) {
return new AutoComplete();
}
this.sSearchValue = '';
this.index = -1;
}
AutoComplete.prototype = {
fnInit: function (option) {//初始化基本信息
var oDefault = {
id: '', //控件id
data: [], //数据
paraName: '',
textFiled: '', //显示的文字的属性名
valueFiled: '', //获取value的属性名
style: {}, //显示的下拉div的样式设置
url: '', //ajax请求的url
select: function () {
}, //选择选项时触发的事件
};
var _option = option;
this.sId = _option.id || oDefault.id;
this.aData = _option.data || oDefault.data;
this.paraName = _option.paraName || oDefault.paraName;
this.sTextFiled = _option.textFiled || oDefault.textFiled;
this.sValueFiled = _option.valueFiled || oDefault.valueFiled;
this.style = _option.style || oDefault.style;
this.sUrl = _option.url || oDefault.url;
this.fnSelect = _option.select || oDefault.select;
this.sDivId = this.sId + new Date().getTime();//加载选项额divid
//判断如果传入了url,没有传入data数据,就ajax获取数据,否则使用data取数据
if (this.sUrl !== '' && this.aData.length === 0) {
var that = this;
this.util.fnGet(this.sUrl, function (data) {
console.log(eval(data));
that.aData = eval(data);
}, 10);
}
//给aData排序
var sTextField = this.sTextFiled;
this.aData.sort(function (a, b) {
return a[sTextField] > b[sTextField];
});
//获取控件
this.domInput = document.getElementById(this.sId);
//this.domDiv = document.getElementById(this.sDivId);
},
fnRender: function () {//渲染一些必须的节点
var that = this;
//生成一个对应的div,承载后面的一些选项的
if (that.sDivId) {
var domDiv = document.createElement('div');
domDiv.id = that.sDivId;
domDiv.style.background = '#fff';
domDiv.style.width = that.domInput.offsetWidth - 2 + 'px';
domDiv.style.position = 'absolute';
domDiv.style.border = '1px solid #a9a9a9';
domDiv.style.display = 'none';
that.util.fnInsertAfter(domDiv, that.domInput);
//加载之后才能将domDiv赋值为
this.domDiv = document.getElementById(this.sDivId);
}
//给input添加keyup事件
that.util.fnAddEvent(that.domInput, 'keyup', function (event) {
that.fnSearch(event);
});
},
fnSearch: function (event) {
//判断如果不是回车键,上键下键的时候执行搜索
if (event.keyCode != 13 && event.keyCode != 38 && event.keyCode != 40) {
this.fnLoadSearchContent();
this.fnShowDiv();
} else {//搜索之后监测键盘事件
var length = this.domDiv.children.length;
if (event.keyCode == 40) {
++this.index;
if (this.index >= length) {
this.index = 0;
} else if (this.index == length) {
this.domInput.value = this.sSearchValue;
}
this.domInput.value = this.domDiv.childNodes[this.index].text;
this.fnChangeClass();
}
else if (event.keyCode == 38) {
this.index--;
if (this.index <= -1) {
this.index = length - 1;
} else if (this.index == -1) {
this.obj.value = this.sSearchValue;
}
this.domInput.value = this.domDiv.childNodes[this.index].text;
this.fnChangeClass();
}
else if (event.keyCode == 13) {
this.fnLoadSearchContent();
this.fnShowDiv();
//this.domDiv.style.display = this.domDiv.style.display === 'none' ? 'block' : 'none';
this.index = -1;
} else {
this.index = -1;
}
}
},
fnLoadSearchContent: function () {
//删除所有的子节点
while (this.domDiv.hasChildNodes()) {
this.domDiv.removeChild(this.domDiv.firstChild);
}
//设置search的值
this.sSearchValue = this.domInput.value;
//如果值为空的时候选择退出
var sTrimSearchValue = this.sSearchValue.replace(/(^\s*)|(\s*$)/g, '');
if (sTrimSearchValue == "") {
this.domDiv.style.display = 'none';
return;
}
try {
var reg = new RegExp("(" + sTrimSearchValue + ")", "i");
}
catch (e) {
return;
}
//搜索并增加新节点
var nDivIndex = 0;
for (var i = 0; i < this.aData.length; i++) {
if (reg.test(this.aData[i][this.sTextFiled])) {
var domDiv = document.createElement("div");
//div.className="auto_onmouseout";
domDiv.text = this.aData[i][this.sTextFiled];
domDiv.onclick = this.fnSetValue(this);
domDiv.onmouseover = this.fnAutoOnMouseOver(this, nDivIndex);
domDiv.innerHTML = this.aData[i][this.sTextFiled].replace(reg, "<strong>$1</strong>");//搜索到的字符粗体显示
this.domDiv.appendChild(domDiv);
nDivIndex++;
}
}
},
fnSetValue: function (that) {
return function () {
that.domInput.value = this.text;
that.domDiv.style.display = 'none';
}
},
fnAutoOnMouseOver: function (that, idx) {
return function () {
that.index = idx;
that.fnChangeClass();
}
},
fnChangeClass: function () {
var that = this;
var length = that.domDiv.children.length;
for (var j = 0; j < length; j++) {
if (j != that.index) {
that.domDiv.childNodes[j].style.backgroundColor = '';
that.domDiv.childNodes[j].style.color = '#000';
} else {
that.domDiv.childNodes[j].style.backgroundColor = 'blue';
that.domDiv.childNodes[j].style.color = '#fff';
}
}
},
fnShowDiv: function () {
if (this.domDiv.children.length !== 0) {
this.domDiv.style.display = this.domDiv.style.display === 'none' ? 'block' : 'none';
}
},
util: {//公共接口方法
fnInsertAfter: function (ele, targetEle) {
var parentnode = targetEle.parentNode || targetEle.parentElement;
if (parentnode.lastChild == targetEle) {
parentnode.appendChild(ele);
} else {
parentnode.insertBefore(ele, targetEle.nextSibling);
}
},
fnAddEvent: function (ele, evt, fn) {
if (document.addEventListener) {
ele.addEventListener(evt, fn, false);
} else if (document.attachEvent) {
ele.attachEvent('on' + (evt == "input" ? "propertychange" : evt), fn);
} else {
ele['on' + (evt == "input" ? "propertychange" : evt)] = fn;
}
},
fnGet: function (url, fn, timeout) {
var xhr = null;
try {
if (window.XMLHttpRequest) {
xhr = new XMLHttpRequest();
} else if (Window.ActiveXObject) {
xhr = new ActiveXObject("Msxml2.Xmlhttp");
}
} catch (e) {
//TODO handle the exception
xhr = new ActiveXObject('Microsoft.Xmlhttp');
}
xhr.onreadystatechange = function () {
if (this.readyState == 4 && this.status == 200) {
fn.call(this, this.responseText);
} else {
setTimeout(function () {
xhr.abort();
}, timeout);
}
};
xhr.open('get', url, true);
xhr.send();
}
}
}
window.AutoComplete = function (option) {
var aOption = Array.prototype.slice.call(arguments);
for(var i=0;i<aOption.length;i++){
var autoComplete = new AutoComplete();
autoComplete.fnInit(aOption[i]);
autoComplete.fnRender();
}
}
})(window);
index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<div>
<input type="text" id="txtTest">
</div>
<br>
<div>
<input type="text" id="txtTest1">
</div>
<script src="autoComplete.js"></script>
<script>
window.onload = function () {
var option = {
id: 'txtTest', //控件id
data: [{
"id": "1",
"name": "aaaaa"
}, {
"id": "2",
"name": "bbbbb"
}, {
"id": "2",
"name": "bbb吴bb"
}, {
"id": "2",
"name": "bbbzbb"
}],
paraName: 'name',
textFiled: 'name', //显示的文字的属性名
valueFiled: 'id', //获取value的属性名
select: function (val, text) {
alert(val + '' + text);
} //选择选项时触发的事件
};
var option1 = {
id: 'txtTest1', //控件id
url: 'data.json', //数据
paraName: 'name',
textFiled: 'name', //显示的文字的属性名
valueFiled: 'id', //获取value的属性名
select: function (val, text) {
alert(val + '' + text);
} //选择选项时触发的事件
};
AutoComplete(option,option1);
}
</script>
</body>
</html>
data.json
[
{
"id": "1",
"name": "aaaaa"
},
{
"id": "2",
"name": "bbbbb"
},
{
"id": "3",
"name": "ccccc"
}
]
0
投稿
猜你喜欢
- 使用django实现注册登录的话,注册登录都有现成的代码,主要是自带的User字段只有(email,username,password),所
- 本文实例讲述了python开发之基于thread线程搜索本地文件的方法。分享给大家供大家参考,具体如下:先来看看运行效果图:利用多个线程处理
- 如下所示:找了好久,今天无意中敲出来了:ctrl+l(小写)全局查找某个变量:ctrl+h我用的Eclipse快捷键来源:https://b
- w3c range range 用来表示用户的选择区域,这块选择区域由两个边界位置界定,而位置则由其容器以及偏移量构成,称作 contain
- 1: 遍历并输出Table中值<table id="tb"><tr><td><
- 前言本文介绍CentOS7使用yum安装golang一、go语言介绍Go语言 是Google公司 在2007开发一种静态强类型、编译型语言,
- 我们经常在B站上看到一些字符鬼畜视频,主要就是将一个视频转换成字符的样子展现出来。看起来是非常高端,但是实际实现起来确是非常简单,我们只需要
- 本文实例为大家分享了python比特币初始配置的具体代码,供大家参考,具体内容如下# -*- coding: utf-8 -*- "
- shapefile转换geojsonimport shapefileimport codecsfrom json import dumps#
- 背景介绍最近在为部门编写一个自动化测试工具,工具涉及到一个功能,即 将自动化测试生成的html报告截图,作为邮件正文,html文件上传到we
- 1、首先在本机安装ssh在cmd输入ssh,出现下面信息代表安装成功2、vscode安装 Remote - SSH 插件3、连接远程主机vs
- 1、requests 的常见用法requests 除了 url 之外,还有 params, data 和 files 三个参数,用于和服务器
- 内容适应形式学习了死猫的文章,我今天也来说说有关内容和容器的关系。看标题你也许觉得有些囧,它和上一篇《形式追随内容?》看起来相反,而且好像从
- 本文实例讲述了python使用wxpython开发简单记事本的方法。分享给大家供大家参考。具体分析如下:wxPython是Python编程语
- 记得以前的Windows任务定时是可以正常使用的,今天试了下,发现不能正常使用了,任务计划总是挂起。接下来记录下Python爬虫定时任务的几
- 在需要使用到大批量数据的时候,即可以使用随机数据进行生成操作Faker的介绍Faker是python方向的一个第三方库,主要用来创造伪数据,
- copy模块用于对象的拷贝操作。该模块非常简单,只提供了两个主要的方法: copy.copy 与 copy.deepcopy ,分别表示浅复
- 将一个CSV格式的文件分割成两个CSV文件本项目可以按照比例将一个csv文件分割成两个csv文件,效果是:在C:\algo_file文件夹下
- 1 configparser安装pip3 install configparser2 configparser简介用来读取配置文件的pyth
- 最近要做一个侧边目录的功能,没有找到类似的组件,索性自己写了一个供大家参考vue-side-catalog一个基于vue的侧边目录组件。源码