我试图为input type=file设置自定义显示,但是选择id的htmlFor不起作用。
默认情况下,输入类型=文件显示为
Choose file(as button) - no file selected
我尝试将这些名称“选择文件”和“未选择文件”更改为我的自定义显示,我如何才能实现这一点?我尝试使用输入字段的选择ID的htmlFor,但没有工作。我尝试使用标签属性,但文本被放置在“选择文件”按钮的顶部。
以下是我目前的试用版:
<label className="form-label" htmlFor='input-file'> select.....</label>
<input
className="form-control form-control-lg form-control-solid"
type="file"
id="input-file"
name="thumbnailImg"
value={undefined}
onChange={(e) => file_choosen(e)}
/>
输出如下所示:
select...
[Choose File] [no file selected]
我尝试展示的内容如下:
[select...] [***custom no file selected here***]
1条答案
按热度按时间7cwmlq891#
如果不希望使用默认输入元素,则需要:
1.隐藏输入元素
1.使用可根据需要设置样式的按钮
1.点击后触发输入文件点击
codesandbox example