본문 바로가기
Coding/JavaScript

[JavaScript] HTML에서 javascript를 활용하여 GET 방식으로 데이터 보내는 방법 !!

by 포스트it 2023. 12. 7.
반응형

 

[JavaScript] HTML에서 javascript를 활용하여 GET 방식으로 데이터 보내는 방법 !!

html에서 javascript를 활용하여 get방식으로 유저아이디와 유저이름 데이터 보내는 방법 입니다 ㅎ

서버 엔드포인트에 ? 를 시작으로 아래와 같이 작성해주시면 됩니다 :)

 

예제코드
<!DOCTYPE html>
<html>
<head>
    <title>GET Request Example</title>
</head>
<body>
    <h2>GET Request Example</h2>
    <form id="userForm">
        <label for="userId">User ID:</label><br>
        <input type="text" id="userId" name="user_id"><br>
        <label for="userName">User Name:</label><br>
        <input type="text" id="userName" name="user_name"><br><br>
        <button type="button" id="submitButton">Send GET Request</button>
    </form>

    <script>
        document.getElementById("submitButton").addEventListener("click", function() {
            var userId = document.getElementById("userId").value;
            var userName = document.getElementById("userName").value;
            var url = "your_server_endpoint?" + "user_id=" + encodeURIComponent(userId) + "&user_name=" + encodeURIComponent(userName);
            window.location.href = url;
        });
    </script>
</body>
</html>
728x90
반응형

댓글