jquery模拟select选择框

直接贴代码:

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>模拟select框</title>
<style>
    * {
        margin: 0;
        padding: 0;
    }
    body {
        font-family: 微软雅黑;
    }
    ul, ul li {
        list-style: none;
    }
    #select {
        width: 200px;
        height: 30px;
        line-height: 30px;
        position: relative;
        background: #fff;
        border: 1px solid #ccc;
        font-size: 12px;
        margin: 100px auto;
    }
    #select span {
        padding-left: 10px;
        color: #555;
        background: #fff;
        box-shadow: 1px 2px 2px rgba(0,0,0,0.1) inset;
        width: 190px;
        display: block;
        cursor: pointer;
    }
    #select ul.option {
        color: #555;
        border: 1px solid #ccc;
        width: 200px;
        margin-left: -1px;
    }
    #select ul.option li {
        text-indent: 10px;
    }
    #select ul.option li:hover {
        cursor: pointer;
        background: #f1f1f1;
        color: #333;
    }
    #triangle-up {
        display: block;
        position: absolute;
        top: calc(50% - 5px);
        right: 10px;
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 10px solid #ccc;
    }
    #triangle-down {
        display: block;
        position: absolute;
        top: calc(50% - 5px);
        right: 10px;
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 10px solid #ccc;
    }
</style>
<script src="jquery-1.7.2.min.js"></script>
</head>
<body>

<div id="select"> <span class="zhiye">---请选择你的职业---</span> <i id="triangle-down"></i> </div>
<script>
$(function(){

      $(‘.zhiye‘).click(function(ev){
          var oPtionHtml = $(‘<ul class="option"><li>java开发工程师</li><li>前端开发工程师</li><li>UI设计师</li><li>ios开发工程师</li><li>安卓开发工程师</li></ul>‘);
          if($(‘.option‘).length>0){
              $(‘.option‘).remove();
            }else{
              $(‘#triangle-down‘).attr(‘id‘,‘triangle-up‘);
              $(this).closest(‘#select‘).append(oPtionHtml);
          }
          ev.stopPropagation();
      })

      $(‘ul.option li‘).live(‘click‘,function(){
           var IndexText = $(this).text();
           $(this).parent(‘ul‘).siblings(‘span‘).text(IndexText);
           $(‘#triangle-up‘).attr(‘id‘,‘triangle-down‘);
           $(this).closest(‘ul‘).remove();
        });

      function closeMenu(ele){
           $(ele).find(‘ul.option‘).remove();
      }

      $(document).click(function(){
          closeMenu(‘#select‘);
          $(‘#triangle-up‘).attr(‘id‘,‘triangle-down‘);
      })

})

</script>
</body>
</html>
时间: 2024-10-24 10:10:02

jquery模拟select选择框的相关文章

【技术】jquery模拟select下拉框取值效果

<!DOCTYPE html><html lang="en"><head><title>jquery模拟select框</title><meta charset="utf-8"><style>body{padding:0;margin:0;font-size:12px;}ul,li{list-style:none;padding:0;margin:0;}#dropdown{width

jQuery获取Select选择的Text(非表单元素)和 Value(表单元素)(转)

jQuery获取Select选择的Text和Value: 语法解释: 1. $("#select_id").change(function(){//code...}); //为Select添加事件,当选择其中一项时触发 2. var checkText=$("#select_id").find("option:selected").text(); //获取Select选择的Text 3. var checkValue=$("#selec

jQuery获取Select选择的Text和 Value

jQuery获取Select选择的Text和Value: 语法解释: 1. $("#select_id").change(function(){//code...});   //为Select添加事件,当选择其中一项时触发 2. var checkText=$("#select_id").find("option:selected").text();  //获取Select选择的Text 3. var checkValue=$("#se

jQuery获取Select选择的Text和 Value(转)

jQuery获取Select选择的Text和Value:语法解释:1. $("#select_id").change(function(){//code...});   //为Select添加事件,当选择其中一项时触发2. var checkText=$("#select_id").find("option:selected").text();  //获取Select选择的Text3. var checkValue=$("#select

jQuery获取select选择的文本与值

l链接地址:http://m.blog.csdn.net/article/details?id=44154571 jquery获取select选择的文本与值获取select :获取select 选中的 text :    $("#ddlregtype").find("option:selected").text(); 获取select选中的 value:    $("#ddlregtype ").val(); 获取select选中的索引:    

jQuery获取Select选择的Text和Value(详细汇总)

语法解释: 1. $("#select_id").change(function(){//code...}); //为Select添加事件,当选择其中一项时触发 2. var checkText=$("#select_id").find("option:selected").text(); //获取Select选择的Text 3. var checkValue=$("#select_id").val(); //获取Select

[荐] jQuery取得select选择的文本与值

csdn:http://blog.csdn.net/tiemufeng1122/article/details/44154571 jquery获取select选择的文本与值获取select :获取select 选中的 text :    $("#ddlregtype").find("option:selected").text(); 获取select选中的 value:    $("#ddlregtype ").val(); 获取select选中

jQuery取得select选择的文本与值

jquery获取select选择的文本与值获取select :获取select 选中的 text :    $("#ddlregtype").find("option:selected").text(); 获取select选中的 value:    $("#ddlregtype ").val(); 获取select选中的索引:    $("#ddlregtype ").get(0).selectedindex; 设置selec

Android较低版本(&lt;5.2) 页面默认Select选择框效果的BUG解决

Bug描述: 使用低版本安卓(<5.2),在微信上打开网页,点击下拉框,会出现如下图所示的用来展示select选项的弹出框: 在选项较少的时候,可以向下滑动,将选项滑到底部 滑动前: 滑动后: 期望达到的效果: 解决方案: 判断是否是微信环境: function isWeixinBrowser(){ return /micromessenger/.test(navigator.userAgent.toLowerCase()); } 判断安卓版号: var userAgent = navigato