如何访问文件上传按钮的属性?

时间:2009-04-06 15:47:16

标签: css button input

你能告诉我如何将css属性分配给type = file的按钮,比如说:

<input type="file"  name="coolFile">

我知道在css中你需要这样做:

  input[type=file]{
     background:#ccf;
//and so on
}

如何为按钮指定值?

3 个答案:

答案 0 :(得分:1)

假设你想要改变按钮的文本,这里有一个关于如何做到这一点的教程:

http://www.quirksmode.org/dom/inputfile.html

如果它只是简单的CSS属性,如颜色/边框/等,你已经有了答案,你只需要检查一下东西,找出它无法正常工作的原因。

答案 1 :(得分:1)

不幸的是,主流浏览器不允许设计人员直接设置文件输入字段的样式。您可以将此视为“安全功能”,因为如果文件输入字段以棘手的方式设置,用户可能会被欺骗上传文件。

有一个解决方案涉及创建第二个输入字段,并隐藏其后面的实际文件输入。以下内容取自http://www.quirksmode.org/dom/inputfile.html

div.fileinputs {
    position: relative;
}

div.fakefile {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
}

input.file {
    position: relative;
    text-align: right;
    -moz-opacity:0 ;
    filter:alpha(opacity: 0);
    opacity: 0;
    z-index: 2;
}

<div class="fileinputs">
    <input type="file" class="file" />
    <div class="fakefile">
        <input />
        <img src="search.gif" />
    </div>
</div>

答案 2 :(得分:0)

您使用DOM/JavaScript,例如:

document.getElementById("id").style.property="value"