Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将浏览按钮的图像附加到我的输入类型 =“文件”
<input type="file" name="browse1" value="browse1">
该图像位于我的项目文件夹之一中
如何附上它请帮忙
谢谢,
input[type=file]::before{ content: url(imagepath); }
这将获取类型属性中带有“文件”的所有输入元素。before 表示要在元素之前附加以下内容。内容附加图像。