zoukankan      html  css  js  c++  java
  • 键盘控制select选项上下

    $('#k').live('keydown',function(event){
    
                if (event.keyCode==38){
                    /*$(this).addClass("active");
                     $(this).siblings().removeclass("active");
                     $("#k").val($(this).text());*/
                    var autoNodes = $(".checktype").children("li");
    
                    if(highlightindex != -1){
                        autoNodes.eq(highlightindex).addClass("active");
                        autoNodes.eq(highlightindex).siblings().removeClass("active");
                        highlightindex--;
                    }else{
                        highlightindex = autoNodes.length - 1;
                    }
                    autoNodes.eq(highlightindex).addClass("active");
                    autoNodes.eq(highlightindex).siblings().removeClass("active");
                    var li_val=$(".checktype").children("li").eq(highlightindex).text()
                    if(li_val!=''){
                        $("#k").val(li_val);
                    }
                    //  $("#k").val($(".checktype").children("li").eq(highlightindex).text());
    
    
                }
    
                if (event.keyCode==40){
    
    
                    var autoNodes = $(".checktype").children("li");
    
                    if(highlightindex != -1){
                        autoNodes.eq(highlightindex).addClass("active");
                        autoNodes.eq(highlightindex).siblings().removeClass("active");
                        highlightindex++;
                    }else{
                        highlightindex++;
                    }
                    if(highlightindex == autoNodes.length){
                        highlightindex = 0;
                    }
    
    
                    autoNodes.eq(highlightindex).addClass("active");
                    autoNodes.eq(highlightindex).siblings().removeClass("active");
                    //autoNodes.eq(highlightindex).siblings().removeclass("active");
                    var li_val=$(".checktype").children("li").eq(highlightindex).text()
                    if(li_val!=''){
                        $("#k").val(li_val);
                    }
    
    
                }
            })
  • 相关阅读:
    P1410 子序列 (动态规划)
    P2085 最小函数值 (堆)
    [ZJOI2007]棋盘制作 (单调栈,动态规划)
    [ZJOI2005]午餐 (贪心,动态规划)
    黑匣子_NOI导刊2010提高 (对顶堆)
    [BZOJ1455] 罗马游戏 (左偏树||并查集)
    P1651 塔 (动态规划)
    两类斯特林数 (组合数学)
    从编程到工程
    失败的过程也是过程
  • 原文地址:https://www.cnblogs.com/afei-happy/p/3906902.html
Copyright © 2011-2022 走看看