\r\n\r\n[/code]\r\n\r\n \r\n\r\n약관채크이나 글입력시 필수...","url":"https://sir.kr/boards/g5_tip/19882","author":{"@type":"Person","name":"애드프로","url":"https://sir.kr/profile/2f95148d-f53e-45c9-ac27-8e9b2311eb54"},"interactionStatistic":[{"@type":"InteractionCounter","interactionType":{"@type":"LikeAction"},"userInteractionCount":3},{"@type":"InteractionCounter","interactionType":{"@type":"CommentAction"},"userInteractionCount":5}],"datePublished":"2023-01-30T17:26:15+09:00","dateModified":"2023-02-02T09:28:57+09:00","comment":[{"@type":"Comment","text":"유용한 팁이네요 감사합니다.","author":{"@type":"Person","name":"브러운아이"},"datePublished":"2023-01-31T00:14:54+09:00"},{"@type":"Comment","text":"감사합니다.","author":{"@type":"Person","name":"써맨"},"datePublished":"2023-01-31T11:00:08+09:00"},{"@type":"Comment","text":"간단하고 좋아요^^","author":{"@type":"Person","name":"미키손"},"datePublished":"2023-01-31T12:43:32+09:00"},{"@type":"Comment","text":"오 한번 해봐야겠네요 감사해요","author":{"@type":"Person","name":"나눌"},"datePublished":"2023-01-31T21:05:55+09:00"},{"@type":"Comment","text":"유용하겠네요\r\n팁 감사합니다.","author":{"@type":"Person","name":"타버린나무"},"datePublished":"2023-02-02T09:28:57+09:00"}]}

form 데이터 전송시 submit 전에 필수 입력값 채크

[code]

<form name="form" onsubmit="return check()">
   <input type="text" name="id">
   <input type="text" name="pw">
   <input type="submit">
</form>

 

<script>
function check() {
  if(form.id.value == "") {
    alert("ID를 입력해주세요.");
    form.id.focus();
    return false;
  } else if(form.pw.value == "") {
    alert("PASSWORD를 입력해 주세요.");
    form.pw.focus();
    return false;
  } else return true;
}
</script>

[/code]

 

약관채크이나 글입력시 필수 입력값이 없으면 페이지이동을 하지않고

채크 후 이동하게 하는 스크립트 입니다.

onsubmit 에 check() 스크립트를 넣어서 전송 혹은 submit 시 호출하게 됩니다.

 

의외로 공개된 소스가 많은데 문의 주신분이 많아 팁게에 올립니다.

|

댓글 5개

유용한 팁이네요 감사합니다.
간단하고 좋아요^^
오 한번 해봐야겠네요 감사해요
유용하겠네요
팁 감사합니다.
댓글을 작성하시려면 로그인이 필요합니다.

그누보드5 팁자료실

+
제목 글쓴이 날짜 조회
3년 전 조회 2,038
3년 전 조회 2,599
3년 전 조회 2,030
3년 전 조회 2,289
3년 전 조회 2,809
3년 전 조회 2,196
3년 전 조회 2,671
3년 전 조회 2,602
3년 전 조회 3,817
3년 전 조회 3,374
3년 전 조회 1,734
3년 전 조회 2,124
3년 전 조회 2,435
3년 전 조회 2,540
3년 전 조회 2,244
3년 전 조회 2,603
3년 전 조회 3,719
3년 전 조회 2,816
3년 전 조회 2,831
3년 전 조회 2,318
3년 전 조회 2,989
3년 전 조회 2,732
3년 전 조회 2,097
3년 전 조회 2,798
3년 전 조회 1,717
3년 전 조회 2,060
3년 전 조회 2,183
3년 전 조회 2,599
3년 전 조회 4,744
3년 전 조회 4,514