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
- 서로소
- java lambda
- 자바 재귀 조합
- Interface
- 재귀함수
- jquery 이벤트 처리
- 후위표기
- 재귀
- 조합 재귀
- Java
- 자바입출력
- java Collections.sort()
- 순열코드
- jquery dom 계층 선택자
- 알고리즘 그래프
- jquery 필터선택자
- 자바
- parseInt()
- 알고리즘
- 자바 순열 코드
- char to str
- 자바스크립트 이벤트처리
- java 내부 클래스
- 상속
- 순열 재귀
- str to char array
- 자바 조합 재귀
- 자바스크립트 이벤트중지
- jquery 속성선택자
- inner class
Archives
- Today
- Total
유블로그
JavaScript 코드를 jQuery로 변환하기 본문
바닐라 js ( 순수 자바스크립트 ) | jquery | |
DOM 탐색 |
document.getElementById("div1"); |
$("#div1"); |
태그 내용 가져오기 | document.getElementById("div1").innerHTML; document.getElementsByClassName("result")[0].innerText; |
$("div1").html(); $(".result").text(); |
태그 내용 변경하기 | document.getElementById("#div1").innerHTML = '<h2>변경</h2>'; document.getElementById("#div1").innerText = '안녕'; |
$("#div1").html('<h2>변경</h2>'); $("#div1").text(“안녕”); |
이벤트 |
btn.addEventListener("click", function() { |
$("#button").click(function() { |
속성 get | document.getElementById("img1").width | $("img").attr("width") |
속성 set |
document.getElementById("img1").width = “200px”; |
$("img").attr("height", "300px"); $("img").attr( { "width":"600px", "height":"500px" } ); |
css 추가/변경 |
document.querySelector("#result").style.color = 'white'; document.getElementById('result').setAttribute(
|
$(".h1").css("color"); -> 값 얻기 $(".h1").css("color", "red"); |
class 추가 / 변경 | document.querySelector("#result").className = "test"; | $("#result").addClass("test"); |
'JavaScript & jQuery' 카테고리의 다른 글
자바스크립트 데이터 타입 (0) | 2021.06.17 |
---|---|
ECMA Script, ES6, 바벨 (0) | 2021.06.17 |
[JavaScript] window 객체와 객체 사용법 (0) | 2020.09.20 |
[jQuery] jQuery의 특징 (0) | 2020.09.20 |
[JavaScript] 변수범위, 데이터타입, 함수, 문자열 (0) | 2020.09.20 |