首页 > 语言 > JavaScript > 正文

jQuery插件datalist实现很好看的input下拉列表

2024-05-06 16:23:07
字体:
来源:转载
供稿:网友

本文给大家分享的是使用jQuery实现的房HTML5中的一个好看的input框很好看的下拉列表--datalist,兼容性非常不错,这里推荐给大家,有需要的小伙伴可以参考下。

HTML5中定义了一种input框很好看的下拉列表--datalist,然而目前它的支持性并不好(万恶的IE,好在你要渐渐退役了...)。于是最近更据需求写了一个小型datalist插件,兼容到IE8(IE7应该没多少人用了吧?)。实现的具体需求如下:

当被选中的时候(触发blur焦点)(不管是鼠标还是tab键)清空input框并且显示自定义的下拉列表,然后可以用键盘的上下键选择(鼠标当然肯定没理由不可以啦),单击鼠标左键或者enter键将选中的列表的值输入到input框。

具体的实现代码如下:

HTML

 

 
  1. <!DOCTYPE html> 
  2. <html> 
  3. <head> 
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
  5. <meta name="description" content="" /> 
  6. <meta name="keywords" content="" /> 
  7. <meta name="robots" content="index, follow" /> 
  8. <meta name="googlebot" content="index, follow" /> 
  9. <meta name="author" content="codetker" /> 
  10. <title> 表单选中弹出框</title> 
  11. <link href="css/reset.css" type="text/css" rel="Stylesheet" />  
  12. <link href="css/master.css" type="text/css" rel="Stylesheet" />  
  13.  
  14. <script type="text/javascript" src="js/jquery-1.11.0.js"></script> 
  15. </head> 
  16.  
  17. <body> 
  18. <div class="wrap"
  19. <form class="center"
  20. <div class="input_wrap"
  21. <input name="input1" class="input input1" type="text"/> 
  22. <ul class="input1_ul select_list"
  23. <li>问题1</li> 
  24. <li>问题2</li> 
  25. <li>问题3</li> 
  26. <li>问题4</li> 
  27. <li>问题5</li> 
  28. </ul> 
  29. </div> 
  30. </form> 
  31. </div> 
  32. <script type="text/javascript" src="js/jquery.codetker.datalist.js"></script> 
  33. <script type="text/javascript"
  34. $(document).ready(function(){ 
  35. $(".input_wrap").myDatalist({"bgcolor":"red","widths":1,"heights":1});  
  36. }); 
  37. </script> 
  38. </body> 
  39. </html> 

CSS(reset.css里面是初始化浏览器默认值用的,这里是style.css)

 

 
  1. .wrap{ margin:0 auto; font-family: "微软雅黑";font-size: 14px;} 
  2. .center{ margin: 0 auto; width:500px;} 
  3. .input{ margin: 0; padding: 0; /*border:none;*/ width:140px; height: 24px; float:left;} 
  4. .select_list{display: none; position:absolute; z-index: 100;} 
  5. .select_list li{ height:24px; margin: 0; padding: 0; background-color: #fff; cursor: pointer; list-style: none; position:relative;} 
  6. .select_list li:hover{ background-color: red;} 
  7. .input_wrap{ position:relative; } 

JavaScript

 

 
  1. /* 
  2. datalist 0.1  
  3. 自定义datalist插件,实现html5中input元素datalist的效果 
  4. 兼容IE8+,Firefox,Chrome等常见浏览器 
  5. */ 
  6.  
  7. ;(function($,window,document,undefined){ //undefinde是真实的undefined,并非参数 
  8. //将可选择的变量传递给方法 
  9.  
  10. //定义构造函数 
  11. var Datalist=function(ele,opt){ 
  12. this.$element=ele; 
  13. this.defaults={ 
  14. 'bgcolor':'green'
  15. 'widths':1, 
  16. 'heights':1 
  17. }, 
  18. this.options=$.extend({}, this.defaults, opt); 
  19. //定义方法 
  20. Datalist.prototype={ 
  21. showList:function(){ 
  22. var color=this.options.bgcolor; 
  23. var width=this.options.widths; 
  24. var height=this.options.heights; //属性值 
  25.  
  26. var obj=this.$element; //obj为最外层包裹的div之类的元素,应该拥有positive:relative属性,方便datalist定位。 
  27. var input=$(obj).children().eq(0); //input元素 
  28. var inputUl=$(obj).children().eq(1); //datalist元素 
  29. //设置弹出datalist的大小和样式 
  30. $(inputUl).css({ 
  31. "top":$(input).outerHeight()+"px"
  32. "width":$(input).outerWidth()*width+"px" 
  33. }); 
  34. $(inputUl).children().css({ 
  35. "width":$(input).outerWidth()*width+"px"
  36. "height":$(input).outerHeight()*height+"px" 
  37. }); 
  38.  
  39. $(inputUl).children('li').mouseover(function() { 
  40. $(this).css("background-color",color); 
  41. $(this).siblings().css("background-color","#fff"); 
  42. }); 
  43. $(inputUl).children('li').mouseout(function() { 
  44. $(this).css("background-color","#fff"); 
  45. }); 
  46. //再次focus变为空,也可以改为某个默认值 
  47. //datalist的显示和隐藏 
  48. $(input).focus(function() { 
  49. if($(this).val()!=""){ 
  50. $(this).val(""); 
  51. $(inputUl).slideDown(500); 
  52.  
  53. var n=-1; //记录位置,-1表示未选中。当n=-1时直接按enter浏览器默认为倒数第一个 
  54. $(document).keydown(function(event) { 
  55. /* 点击键盘上下键,datalist变化 */ 
  56. stopDefaultAndBubble(event); 
  57. if(event.keyCode==38){//向上按钮 
  58. if(n==0||n==-1){ 
  59. n=4; 
  60. }else
  61. n--; 
  62. $(inputUl).children('li').eq(n).siblings().mouseout(); 
  63. $(inputUl).children('li').eq(n).mouseover(); 
  64. }else if(event.keyCode==40){//向上按钮 
  65. if(n==4){ 
  66. n=0; 
  67. }else
  68. n++; 
  69. $(inputUl).children('li').eq(n).siblings().mouseout(); 
  70. $(inputUl).children('li').eq(n).mouseover(); 
  71. }else if(event.keyCode==13){//enter键 
  72. $(inputUl).children('li').eq(n).mouseout(); 
  73. $(input).val( $(inputUl).children('li').eq(n).text() ); 
  74. n=-1; 
  75. }); 
  76.  
  77.  
  78. //去掉浏览器默认 
  79. function stopDefaultAndBubble(e){ 
  80. e=e||window.event; 
  81. //阻止默认行为 
  82. if (e.preventDefault) { 
  83. e.preventDefault(); 
  84. e.returnValue=false
  85.  
  86. //阻止冒泡 
  87. if (e.stopPropagation) { 
  88. e.stopPropagation(); 
  89. e.cancelBubble=true
  90.  
  91. }); 
  92. $(input).blur(function() { 
  93. $(inputUl).slideUp(500); 
  94. }); 
  95. $(inputUl).delegate('li''click'function() { 
  96. $(input).val( $(this).text() ); 
  97. }); 
  98.  
  99. return this
  100. //在插件中使用Datalist对象 
  101. $.fn.myDatalist=function(options){ 
  102. //创建实体 
  103. var datalist=new Datalist(this,options); 
  104. //调用其方法 
  105. return datalist.showList(); 
  106.  
  107. })(jQuery,window,document); 

这里用ul li列表模拟datalist options。实现逻辑非常简单,稍微需要注意点的是div.input_wrap是用相对定位的,方便ul.input1_ul相对进行定位。由于需求有很多的输入框且相互之间不影响,因此这里是input1。好歹是我自己开发的第一个插件,mark一记。

需要代码的可以戳https://github.com/codetker/myDatalist。

以上所述就是本文的全部内容了,希望大家能够喜欢。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选