Hello se

[html js]post로 보내기 a태그 본문

web

[html js]post로 보내기 a태그

soyamm 2024. 5. 29. 15:27
반응형

 

게시판 클릭시  데이터보낼때 사용

	<a href="#" class="go_btn" onclick="submitPretxtForm(event)">팝업창 요청하기</a>

    <form id="pretxtForm" action="m_write.php?ps_db=qna&ps_category=0&ps_boid=" method="post" style="display:none;">
        <input type="hidden" name="pretxt" value="<?=$text_subject?>팝업창요청합니다.">
    </form>

    <script>
        function submitPretxtForm(event) {
            event.preventDefault();  // 기본 링크 동작을 막습니다.
            document.getElementById('pretxtForm').submit();
        }
    </script>

 

.bbs_info > a{position: absolute;bottom: 0;right: 0; width: 180px; padding: 13px 10px; text-align: center; font-size: 17px; font-weight: 500; background-color: #fff; color: #0065ef;border: 1px solid #0065ef; box-sizing: border-box; border-radius: 10px;}
반응형
Comments