html 다운로드 버튼 오류
본문
다운로드 버튼을 클릭하였을 때 잘 될때가 있고 안될때가 있는데 코드에 문제가 있나요?
<a href="<?=$path_save_file?>" download class="a">
<input type="button" value="다운로드" class="button">
</a>
!-->
답변 2
<a href="<?=$path_save_file?>" download class="a">다운로드</a> <input type="button" value="다운로드" class="button" onclick="location.href='<?=$path_save_file?>'">
둘중 하나로 바꿔보세요.
답변을 작성하시기 전에 로그인 해주세요.