ul+js模拟select

html

 
css
.select_box{
  float: left;
}
.select_box input{
  width: 160px;
  height: 30px;
  text-align: center;
  font-size: 18px;
  color: #444;
}
.select_ul{
  font-size: 14px;
  text-align: center;
  border: 1px solid #D2D3D3;
}
.select_ul li{
  height: 50px;
  line-height: 50px;
}
.select_ul li:hover{
  background-color: #4EC0EC;
}

  js

$(".select_box input").click(function(){
      var thisinput=$(this);
      var thisul=$(this).parent().find("ul");
      if(thisul.css("display")=="none"){
//        if(thisul.height()>200){thisul.css({height:"200"+"px","overflow-y":"scroll" })};
        thisul.fadeIn("100");
        thisul.hover(function(){},function(){thisul.fadeOut("100");})
        thisul.find("li").click(function(){thisinput.val($(this).text());thisul.fadeOut("100");}).hover(function(){$(this).addClass("hover");},function(){$(this).removeClass("hover");});
      }
      else{
        thisul.fadeOut("fast");
      }
    })
//    $("#submit").click(function(){
//      var endinfo="";
//      $(".select_box input:text").each(function(i){
//        endinfo=endinfo+(i+1)+":"+$(this).val()+";\n";
//      })
//      alert(endinfo);
//    })

  

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。