React 修改input按钮上文字

Posted xym4869

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了React 修改input按钮上文字相关的知识,希望对你有一定的参考价值。

设置另一个button和text替代input file,隐藏input file。

            <input
                type="file"
                id="tts-input-text"
                accept="text/plain"
                onChange={readFile}
                onClick={(e: any) => (e.target.value = null)} />
            <input
                type="button"
                id="tts-input-button"
                value="Select recording script"
                onClick={() => document.getElementById(‘tts-input-text‘).click()} />
            <input type="text" value={file.name} id="tts-inputFileAgent" />

css:

    #tts-input-text {
        display: none;
    }

以上是关于React 修改input按钮上文字的主要内容,如果未能解决你的问题,请参考以下文章

如何更改<input type="file" />的按钮文字?

如何更改<input type="file" />的按钮文字?

ios修改导航栏上返回按钮上的文字,例如把back修改为返回

怎样让一行中的 文字 input输入框 按钮button它们在同一个高度上? 它们中的文字 是 垂直居中对齐

input提示文字;placeholder字体修改

js点击修改按钮后要修改的地方出现文本框怎么弄?