zoukankan      html  css  js  c++  java
  • input[type="file"] CSS

    1.原理

    基于安全性考虑,IE不支持用程序设置input type=file的值。

    所以不能直接用<input type="text"/>和<input type="button"/>代替,

    CSS美化file组件的方法是使用position属性将file组件置于<input type="text"/>和<input type="button"/>之上,

    然后使其全透明化,操作时使用户感觉在操作<input type="text"/>和<input type="button"/>,实际上还是在操作file组件。 

    <!DOCTYPE html>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>定义input type="file" 的样式</title>
    <style type="text/css">
    .type-file-box {
    position:absolute;
    260px
    }

    input {
    vertical-align:middle;
    margin:0;
    padding:0
    }

    .type-file-text {
    height:22px;
    border:1px solid #cdcdcd;
    180px;
    }

    .type-file-button {
    background-color:#FFF;
    border:1px solid #CDCDCD;
    height:24px;
    70px;
    }

    .type-file-file {
    position:absolute;
    top:0;
    right:0;
    height:24px;
    filter:alpha(opacity:0);
    opacity: 0;
    260px
    }
    </style>
    </head>
    <body>
    <div class="type-file-box">
    <form action="" method="post" name="form1" id="form1">
    <input type='text' name='textfield' id='textfield' class='type-file-text' />
    <input type='button' name='button' id='button' value='浏览...' class='type-file-button' />
    <input name="fileField" type="file" class="type-file-file" id="fileField" size="28" onchange="javascript:document.getElementById('textfield').value=this.value;"/>
    </form>
    </div>
    </body>
    </html>

  • 相关阅读:
    NYOJ 1073 最大值 (模拟)
    NYOJ 1063 生活的烦恼 (二叉树)
    NYOJ 1022 合纵连横 (并查集)
    [leetcode-553-Optimal Division]
    [leetcode-496-Next Greater Element I]
    [leetcode-556-Next Greater Element III]
    [leetcode-500-Keyboard Row]
    [leetcode-36-Valid Sudoku]
    [leetcode-127-Word Ladder]
    [leetcode-567-Permutation in String]
  • 原文地址:https://www.cnblogs.com/mguo/p/3039280.html
Copyright © 2011-2022 走看看