代码之家  ›  专栏  ›  技术社区  ›  codeandcloud

的帮助文本asp:FileUpload or input:file

  •  0
  • codeandcloud  · 技术社区  · 15 年前

    我想知道 this 可以与input:file

    网址: http://www.kryogenix.org/code/browser/labelify/

    当做,

    2 回复  |  直到 15 年前
        1
  •  1
  •   tcooc    15 年前

    您可以有一个指向隐藏文件输入的输入按钮/文本。一个粗略的例子是:

    <input type="button" value="Filessssss" onclick="this.nextElementSibling.click();">
    <input type="file" style="visibility:hidden;display:absolute;" onchange="this.previousElementSibling.value=this.files[0].name">
    

    那你就可以申请了 labelify 在按钮或文本上。 (在铬上测试)

        2
  •  1
  •   tathagata    15 年前

    我不这么认为。没有简单的方法可以让你改变风格input:file. 你需要使用一种不同的文件上传机制——要么基于flash,要么使用新的HTML5特性。