翼度科技»论坛 编程开发 JavaScript 查看内容

js select支持手动输入功能实现代码

6

主题

6

帖子

18

积分

新手上路

Rank: 1

积分
18
select下拉框的onkeydown事件,修改下拉框的值
  1.   function catch_keydown(sel){
  2.    switch(event.keyCode) {
  3.     case 13: //回车键
  4.      event.returnValue = false;
  5.      break;
  6.     case 27: //Esc键
  7.      sel.options[sel.selectedIndex].text = oldText;
  8.      sel.options[sel.selectedIndex].value = oldValue;
  9.      event.returnValue = false;
  10.      break;
  11.     case 8:  //空格健
  12.      var s = sel.options[sel.selectedIndex].text;
  13.      s = s.substr(0,s.length-1);
  14.      if (sel.options[0].value==sel.options[sel.selectedIndex].text){
  15.       sel.options[sel.selectedIndex].value=s;
  16.       sel.options[sel.selectedIndex].text=s;
  17.      }
  18.      event.returnValue = false;
  19.      break;
  20.    }
  21.    if (!event.returnValue && sel.onchange)
  22.     sel.onchange(sel)
  23.   }
复制代码
select下拉框的onkeypress事件,修改下拉框的值
  1.   function catch_press(sel){
  2.    if(sel.selectedIndex>=0){
  3.     var s = sel.options[sel.selectedIndex].text + String.fromCharCode(event.keyCode);
  4.     if (sel.options[sel.selectedIndex].value==sel.options[sel.selectedIndex].text){
  5.      sel.options[sel.selectedIndex].value=s;
  6.      sel.options[sel.selectedIndex].text=s;
  7.     }
  8.     event.returnValue = false;
  9.     if (!event.returnValue && sel.onchange)
  10.      sel.onchange(sel)
  11.    }
  12.   }
复制代码
select下拉框的onfocus事件,保存下拉框原来的值
  1.   function catch_focus(sel) {
  2.    oldText = sel.options[sel.selectedIndex].value;
  3.    oldValue = sel.options[sel.selectedIndex].value;
  4.   }   
复制代码
使用方法
  1. <!--调用-->
  2. <select style='width:130px;z-index:-1' name='tmpSel'    onkeydown=catch_keydown(this) onkeypress=catch_press(this) onfocus=catch_focus(this)>
  3.   <option value=''></option>
  4.   <option value=''>A</option>
  5.   <option value=''>B</option>
  6.   <option value=''>C</option>
  7. </select>
复制代码
到此这篇关于js select支持手动输入功能实现代码的文章就介绍到这了,更多相关js select 手动输入内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

来源:https://www.jb51.net/javascript/284424srg.htm
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

举报 回复 使用道具