티스토리 뷰
아래 링크를 통해 가입시 바이낸스 코인 거래수수료 25% 평생할인!
25% lifetime discount on Binance Coin transaction fees when you sign up through the link below!
https://accounts.binance.com/en/register?ref=286562663
Log In | Binance
login-description
accounts.binance.com
바이낸스 추천코드로 가입하고 수수료 25% 평생 할인 받으세요! (바이낸스 가입 레퍼럴코드, 추천
바이낸스 추천코드로 가입하고 수수료 25% 평생 할인 받으세요! 바이낸스 가입코드, 레퍼럴코드, 추천코드, 할인코드 : ( 286562663 ) 아래 링크를 통해 가입시 25% 할인 받을 수 있습니다 http
pink24.tistory.com
(구글 나라별 추천검색어가 다릅니다 - find 를 검색해보았더니..)
호주구글 영국구글 우회접속 주소(나라별 구글 우회 바로가기 링크 2023) - 일체유심조
구글 우회접속 주소 에 대해 공유드리기 전에
wgmakeit.com
컴퓨터 구조의 발전 과정 - 일체유심조
우선 주요 부품들의 발전 과정에 대해 알아보겠습니다.초기 컴퓨터들의 근본적인 설계 개념과 동작 원리가 현대의 컴퓨터들과 거의 같은데요, 최초의 컴퓨터는 Blaise Pascal이 개발한 덧셈과 뺄셈
wgmakeit.com
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
//1. 이벤트에 해당되는 메소드
// 예> click(), change()...
$("#aaa").click(function(){
console.log("ok 클릭");
});
//2. on 이벤트(권장) - 옛날에는 bind썼음 ==> deprecated 버전업 되면서 제공 안함
// 이벤트 여러개 줄 수있따.
$("#bbb").on("click change", function(){
console.log("cencel 클릭");
});
$("#naver").on("submit",function(e){
//못넘어가게 하는 것 2가지
//return false;
e.preventDefault(); //기본으로 넘어가는 것을 방지한다. 이걸 더 많이 씀
});
$("#form").on("submit",function(e){
if( $("#userid").val() == "" || $("#passwd").val() == "" ){
e.preventDefault();
alert("아이디 및 비밀번호 확인해요.");
}
});
});
</script>
</head>
<body>
<button id="aaa">ok</button>
<button id="bbb">cancel</button>
<a href="http://www.naver.com" id="naver">네이버</a>
<form action="test.html" id="form">
아이디<input type="text" name="userid" id="userid" >
비밀번호<input type="text" name="passwd" id="passwd" >
<input type="submit" name="로그인">
</form>
</body>
</html>
------------ test . html -----
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
//1. 이벤트에 해당되는 메소드
// 예> click(), change()...
$("#aaa").click(function(){
console.log("ok 클릭");
});
//2. on 이벤트(권장) - 옛날에는 bind썼음 ==> deprecated 버전업 되면서 제공 안함
// 이벤트 여러개 줄 수있따.
$("#bbb").on("click change", function(){
console.log("cencel 클릭");
});
$("#naver").on("submit",function(e){
//못넘어가게 하는 것 2가지
//return false;
e.preventDefault(); //기본으로 넘어가는 것을 방지한다. 이걸 더 많이 씀
});
$("#form").on("submit",function(e){
if( $("#userid").val() == "" || $("#passwd").val() == "" ){
e.preventDefault();
alert("아이디 및 비밀번호 확인해요.");
}
});
});
</script>
</head>
<body>
<button id="aaa">ok</button>
<button id="bbb">cancel</button>
<a href="http://www.naver.com" id="naver">네이버</a>
<form action="test.html" id="form">
아이디<input type="text" name="userid" id="userid" >
비밀번호<input type="text" name="passwd" id="passwd" >
<input type="submit" name="로그인">
</form>
</body>
</html>
'it' 카테고리의 다른 글
메모리 관리 개념 (0) | 2022.08.16 |
---|---|
스케줄링, 다중 프로그래밍, 스케줄러 , 입출력 큐와 준비 큐, 작업 스케줄링, 프로세스 스케줄링, 선입 선처리(FCFS) 스케줄링, 다단계 큐 스케줄링 , 순환 할당 스케줄링(Round-Robin Scheduling), 최.. (0) | 2022.08.16 |
버튼 클릭시 버튼 하나더 생기게 추가해주기 (0) | 2022.08.15 |
태그 안에 내용 추가해주기 / append /prepend /after/before (0) | 2022.08.15 |
SSO란? (0) | 2022.08.14 |
(구글 나라별 추천검색어가 다릅니다 - find 를 검색해보았더니..)
호주구글 영국구글 우회접속 주소(나라별 구글 우회 바로가기 링크 2023) - 일체유심조
구글 우회접속 주소 에 대해 공유드리기 전에
wgmakeit.com
컴퓨터 구조의 발전 과정 - 일체유심조
우선 주요 부품들의 발전 과정에 대해 알아보겠습니다.초기 컴퓨터들의 근본적인 설계 개념과 동작 원리가 현대의 컴퓨터들과 거의 같은데요, 최초의 컴퓨터는 Blaise Pascal이 개발한 덧셈과 뺄셈
wgmakeit.com