반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- jenkins
- mysql
- node.js
- MSsql
- Eclipse
- popup
- jquery
- docker
- MariaDB
- nodejs
- mybatis
- Maven
- NextJS
- security
- pwa
- SpringBoot
- submit
- centos7
- Next.js
- PM2
- yona
- rocky9
- Java
- spring3
- git
- FCM
- javascript
- Push
- config
- ajax
Archives
- Today
- Total
ふたりで
HTML form의 onsubmit을 이용한 조건부 submit 본문
728x90
반응형
SMALL
예를들어 아래와 같이 form으로 구성된 UI일 경우 검색어 조회를 하는데 입력한 검색어가 없거나 빈문자열 공백일 경우
submit하지 못하게 할때 onsubmit 을 설정 하여 조건이 맞을 경우만 submit 되도록 할 수 있다.
- html 소스
<form action="...." onsubmit="return inpValidateFn();" name="form">
<input id="searchKeyword" type="submit" value="">
<button type="submit">
<span class="icon-search"></span>
</button>
</form>
<script type="text/javascript">
//검색어가 없을경우 false
function inpValidateFn(){
var searchkeyword = $('#searchKeyword').val().trim();//공백삭제.
if(searchkeyword.length == 0){
return false;
}else{
return true;
}
}
</script>
728x90
반응형
LIST
'javascript' 카테고리의 다른 글
URL location.pathname으로 구분 처리를 해야 할 경우... (1) | 2022.09.23 |
---|---|
html 특정 영역 window.print 시 마지막 공백 페이지 제거 하기 (0) | 2022.09.16 |
임시form을 생성 하여 ajax로 form 전송 하기. (0) | 2022.09.01 |
location.replace() 브라우저 history 남기지 않기. (0) | 2022.08.30 |
jsp table merge row span by class (0) | 2022.08.22 |
Comments