zoukankan      html  css  js  c++  java
  • html 可编辑的下拉框

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
                <title>可编辑下拉框</title>
            <meta charset="UTF-8" />
            <style type="text/css">
            /*input css*/
            .iInput{
                position: absolute;
                width: 99px;
                height: 16px;
                left: 1px;
                top: 2px;
                border-bottom: 0px;
                border-right: 0px;
                border-left: 0px;
                border-top: 0px;
            }
            </style>
    </head>
    <body>
    
            <div style="position:relative;">
                  <select style="120px;"
                          onchange="document.getElementById('input').value=this.value">
                    <option value="A类">A类</option>
                    <option value="B类">B类</option>
                    <option value="C类">C类</option>
                    <option value="D类">D类</option>
                  </select>
                  <input id="input" name="input" class="iInput">
            </div>
    </body>
    </html>
  • 相关阅读:
    稠密光流
    分水岭分割
    Haar小波分析
    内积空间
    矩阵LU分解
    opencv笔记---contours
    Deformable Templates For Eye Detection
    最小二乘法
    字符集及编码
    层次聚类
  • 原文地址:https://www.cnblogs.com/polly-ling/p/9830065.html
Copyright © 2011-2022 走看看