javascript(5)
-
URL 관련
URL이 https://www.google.co.kr/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8#q=html5 일 때, window.location.href // $(location).attr('href') // https://www.google.co.kr/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8#q=html5 window.location.protocol // $(location).attr('protocol') // https:// window.location.host // $(location).attr('host') // www.google.co.kr window.location.pathname // ..
2018.03.23 -
[jQuery] offset(), position()
- offset().left, offset().right left, top 위치 get (절대좌표) - offset(value) 위치 set ex) offset({top : 300, left : 200}); - position().left, position().right left, top 위치 get (상대좌표)
2018.03.23 -
[jQuery] width(), height()
- width(value) / width() width 값 set / width 값 get - height(value) / height() height 값 set / height 값 get
2018.03.23 -
lastIndexOf
- 마지막 해당 string이 시작하는 index var str = "time, time, time"; str.lastIndexOf("time"); // 12
2018.03.23 -
javascript 실행 순서
1. 스크립트에 바로 쓴 코드 2. ;(function ($) { console.log("이게 두 번째"); })(jQuery); 3. $(document).ready(function ( ) { console.log("이게 세 번째"); }); $(function ( ) { console.log("이게 세 번째"); }); 4. window.onload = function ( ) { console.log("이게 네 번째"); } 기본적으로 동기방식이므로 같은 순위면 순서대로 진행된다.
2018.03.23