하나의 form에 여러 submit 만들기 (formaction)

ino5·2021년 6월 4일
0
<form method="post">
	<input type="sumit" formaction="[주소]">
  	<input type="sumit" formaction="[주소2]">
</form>

formaction 이용하여 하나의 form에 여러 submit 만들기 가능

예시

<form method="post">
	<input type="hidden" name="bd_code" value="${comment.bd_code}">
	<input type="hidden" name="bd_num" value="${comment.bd_num}">
	<input type="hidden" name="pageNum" value="${pageNum}">
	<input type="hidden" name="target_bd_cm_num" value="${comment.bd_cm_num}">
	<input type="hidden" name="target_ref" value="${comment.ref}">
	<input type="hidden" name="target_re_step" value="${comment.re_step}">
	<input type="hidden" name="target_re_level" value="${comment.re_level}">
	<tr class="tr_comment">
		<td class="td_comment_content">
			<c:forEach var="i" begin="0" end="${comment.re_level-1}"> &nbsp;&nbsp; </c:forEach>
			<c:if test="${comment.re_level>1 }">
				<span style="color:gray"></span>
			</c:if>
			${comment.content}
		</td>
		<td>${comment.m_id}</td>
		<td class="comment_reg_date"><fmt:formatDate value="${comment.reg_date}" pattern="yyyy-MM-dd HH:mm:ss"/></td>
		
		<td><input type="submit" value="삭제" class="btn btn_comment_delete" formaction="${pageContext.request.contextPath}/communityCommentDelete.do"></td>			

	</tr>
	<tr>
		<td class="td_comment_reply_content">
		<c:forEach var="i" begin="0" end="${comment.re_level}"> &nbsp;&nbsp; </c:forEach>
			<input name="content" class="form_box comment_reply_box comment_reply_box_${comment.bd_cm_num}">
			<input type="button" value="답글달기" class="btn btn_reply btn_reply_${comment.bd_cm_num}" onclick="funcReplyBox(${comment.bd_cm_num}, '300px')"></input>
			<input type="submit" value="등록" class="btn btn_reply  btn_reply2 btn_reply2_${comment.bd_cm_num}" formaction="${pageContext.request.contextPath}/communityCommentReply.do">
		</td>
		<td>
			
		</td>
	</tr>							
</form>
profile
지금은 네이버 블로그만 해요... https://blog.naver.com/chero77

0개의 댓글