扫码关注官方订阅号
用浏览器打开效果如图
我有什么办法将browse这几个字改为 “请立即上传文件” ?
业精于勤,荒于嬉;行成于思,毁于随。
<input type="button" name="" value="请立即上传文件"><input type="file" name="files"> input[type="file"]{ opacity: 0; position: relative; top:0; left:-120px; } input[type="button"]{ width:120px; height: 35px; line-height: 35px; background-color: #fff; font-size:14px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; }
用一个按钮或者a标签或者p把其包裹起来,通过定位使其位置重合,然后将flie的原样式设置为透明度为0(opacity:0)
不可以更改,只能使用INPUT BUTTON组模拟。
你需要的是label这个标签
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
用一个按钮或者a标签或者p把其包裹起来,通过定位使其位置重合,然后将flie的原样式设置为透明度为0(opacity:0)
不可以更改,只能使用INPUT BUTTON组模拟。
你需要的是label这个标签