在各种搜索引擎中我们都可以见到自动不全的效果,我们这里用javascript来实现自动补全。
/**
* new InputSuggest({
* input HTMLInputElement 必选
* data Array ['sina.cn','sina.com','2008.sina.com','vip.sina.com.cn'] 必选
* containerCls 容器className
* itemCls 容器子项className
* activeCls 高亮子项className
* width 宽度设置 此项将覆盖containerCls的width
* opacity 透明度设置 此项将覆盖containerCls的opacity
* });
*/
示意图:
兼容所有浏览器。
示例及源码下载:下载地址
相关:Firefox浏览器中autocomplete="off" 不起作用的