My Blog

jQuery 본문

KDT 백엔드 스쿨 3기

jQuery

JAESG 2023. 2. 21. 09:15

기본적인 자바스크립트 문법을 배웠다.

 

그 중에 jQuery에 관해서 배웠는데

https://releases.jquery.com/

 

jQuery CDN

The integrity and crossorigin attributes are used for Subresource Integrity (SRI) checking. This allows browsers to ensure that resources hosted on third-party servers have not been tampered with. Use of SRI is recommended as a best-practice, whenever libr

releases.jquery.com

이 홈페이지에 들어가서 최신 버전 minified로 들어가서 코드를 복사해 

코드에 입력하면 된다.

jQuery 3.x

 

그렇게 되면 원래는

document.getElementById('(태그아이디)').value; 이랬던 코드가

$('#(태그아이디)').val() 이렇게 간단해진다.

 

또한

$('#(태그아이디)').click(함수이름(실행x)) 이렇게 클릭 이벤트도 실행할 수 있다.

 

// 익명함수
$('#click').click(function(){ console.log("hello"); });
이렇게 익명함수도 만들 수 있다.

 

728x90
Comments