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
- #TIL #Today I Learned #기록 #회고 #ternary statement #swich statement #스위치 반복문 #
- 자바스크립트 #javascript #datatype #데이터타입 #자료형
- single source of truth란 #single source of truth #자료의중복 #자료의비정합성 #비정합성 #리팩토링
- 고스트 블로그 #
- 불리언 #Boolean #number #string #symbol #null #undefined
- 블로그만들기 #웹사이트만들기 #
- hackerrank #python #algorithm #해커랭크 #파이썬 #알고리즘
- javascript #statement #expression #difference
- 웹페이지제작 #
- 블로그 셀프제작
- 기록 #회고
- TIL #Today I Learned #
- Hackerrank #해커랭크 #python #파이썬 #알고리즘 #Algorithm
- javascript '===' #javascript #TIL #Today I Learned #기록 #회고
- javascript #event #onclick #js
- 강의 #느낀점 #snowfox #스노우폭스 #김승호회장
- TIL #Today I Learned # 기록 # 회고 #Udemy
Archives
- Today
- Total
well-balanced
[TIL] 기록 29일차 본문
Today I Learned
DOM에서 제공하는 메소드 setAttribute, getAttribute에 대응되는 jQuery의 메소드는 attr, RemoveAttribute에 대응되는 메소드는 removeAttr이다.
object.setAttribute('class','important') // Attribute 방식
object.className('important') // property 방식
object.attr('class') // jQuery Attribute 방식
object.prop('class') // jQuery property 방식
<input id="checkBox"type="checkbox" checked="checked"/>
var checkBox = $('#checkBox')
console.log(checkBox.attr('checked');) // checked
console.log(checkBox.prop('checked')); // true
object.getBoundingClientRect() // object와 바디 사이의 거리 관계
// delay만큼의 간격을 두고 지속 실행하는 함수
setInterval(function,delay)
// 이벤트 전파 취소
function handler(event){
console.log(this.nodeName)
}
function stopHandler(event){
console.log(this.nodeName)
event.stopPropagation()
}
document.getElementById('target').addEventListener('click', handler, false)
document.querySelector('fieldset').addEventListener('click',stopHandler,false) // 이벤트전파 스탑
document.querySelector('body').addEventListener('click',handler, false)
'TIL : study log' 카테고리의 다른 글
[TIL] 기록 31일차 (0) | 2019.12.01 |
---|---|
[TIL] 기록 30일차 (0) | 2019.11.30 |
[TIL] 기록 28일차 (0) | 2019.11.28 |
[TIL] 기록 27일차 (0) | 2019.11.27 |
[TIL] 기록 26일차 (0) | 2019.11.26 |
Comments