영상
개념
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>onclick</title>
</head>
<body>
숫자 : <input id="num" type="text">
<input type="button" value="확인" onclick="ok()">
<script type="text/javascript">
function ok(){
let num = document.getElementById("num").value;
//정규식 패턴(숫자만 입력할 수 있도록)
let num_pattern = /^[0-9]+$/; //0~9사이의 숫자
// num_pattern.test(num)); 결과는 true 또는 false
if( !num_pattern.test(num) ){
alert("숫자만 입력할 수 있습니다.");
}
}
</script>
</body>
</html>
Java
복사