[이윰] 게시글 작성 중복 방지하기
페이지 정보
shadow2fox
2,242 2 2
2021.02.03 23:36:13
짧은주소
-
https://yadolee.com/tip/830 주소복사
본문
📝 게시글 작성 중복 방지하기
글 작성 시 작성완료(input 타입 버튼)를 클릭한 수 만큼 게시글이 작성되는 버그(?)가 있다.
그누보드5/eyoom/theme/테마/skin_bs/board/write.skin.html을 열어 document.getElementById("btn_submit").disabled = "disabled";를 검색하여 아래와 같이 수정한다.
수정 전
만약 야돌이닷컴처럼 다중 작성완료 버튼을 이용 중이라면 아래와 같이 해야 한다.
그누보드5/eyoom/theme/테마/skin_bs/board/write.skin.html을 열어 document.getElementById("btn_submit").disabled = "disabled";를 검색하여 아래와 같이 수정한다.
수정 전
document.getElementById("btn_submit").disabled = "disabled";
return true;
수정 후
document.getElementById("btn_submit").disabled = "disabled";
//게시글 중복 작성 금지
$(this).submit(function() {
$(this).find('input[type="submit"]').prop('disabled',true);
});
return true;
만약 야돌이닷컴처럼 다중 작성완료 버튼을 이용 중이라면 아래와 같이 해야 한다.
document.getElementById("btn_submit").disabled = "disabled";
//게시글 중복 작성 금지
$(this).submit(function() {
$("input#btn_submit").prop("disabled", true);
});
return true;
추천인 2
레벨 149
경험치 3,343,659
Progress Bar 80.23%
- 가입일 : 2015-03-10 12:21:44
- 서명 : 인간에게 가장 큰 선물은
자기 자신에게 기회를 주는 것이다.
- 크리스 가드너, Chris Gardner -
- 자기소개 : There's never a shortcut to happiness.



댓글2
하늘구장님의 댓글
내사랑님의 댓글
축하합니다. 첫 댓글로 5경험치를 획득하였습니다.