1. 모달 상자에 파일 업로드 쓰기
2. 입력 스타일을 파일로 수정하세요
기본값은 "파일 선택"이며,
바로 뒤에 파일 이름이 표시됩니다.
해결 방법: 스타일 수정
방법은 다음과 같습니다:
<form action="http://localhost:8080/GD/UploadAction_execute.action" method="post" enctype="multipart/form-data" name="uploadfile"> <input type="file" name="my" id="file" value="浏览" style="display: none;" onchange="document.uploadfile.filePath.value=this.value"/> <input type="text" name="filePath" id="filePath"/> <input type="button" value="浏览..." onclick="document.uploadfile.my.click()"/><br> <input type="submit" value="上传" id="shangchuan"> </form>
위 내용은 파일 업로드 버튼을 원하는 스타일로 수정하세요.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!