jQuery MultiFile选择文件按钮

时间:2011-11-23 13:30:56

标签: jquery html ruby-on-rails

我使用jQuery MultiFile插件。下面的上传按钮:

Choose File button

我可以将选择文件文字更改为其他内容吗?网上冲浪无法帮助我。

我只想要一个"选择文件"那里。

请说*是(+和如何)或*否。

谢谢!

2 个答案:

答案 0 :(得分:3)

是的,我找到了最好的解决方法!这不是一个黑客 - 我们只需要2个按钮:原始和'假'。

  <input type="button" value="Choose Files">
  <input type="file">

向用户显示假,并且

  z-index:1

原始位于其上方,

  z-index:2, opacity: 0; position: relative;

并有回调:

  :onmousedown=>"buttonPush('depressed')", :onmouseup=>"buttonPush('normal')"

  function buttonPush(buttonStatus) {
    if (buttonStatus == "depressed")
      document.getElementById("fake_btn").style.borderStyle = "inset";
    else
      document.getElementById("fake_btn").style.borderStyle = "outset";
  }

感谢此链接 http://www.dreamincode.net/forums/topic/15621-styling-a-file-browse-button/

关心@Piskvor,@ irar

答案 1 :(得分:2)

不,这是<input type="file">控件的一部分,网页无法控制其外观。