본문 바로가기

전체 글

(137)
php 2022. 6. 23. 11:24
[php]파일명 추출 // 확장자 없는 파일명 추출 // 확장자 있는 파일명 추출
js 2022. 6. 13. 16:26
[js] css/js 비교 - 드래그하는 만큼 움직이는 슬라이드 swiper See the Pen 드래그하는 만큼 스크롤되기 by sangmok-ye (@sangmok-ye) on CodePen.
react 2022. 6. 8. 09:52
[react]배열 추출하기 function array(){ let list=[] let unit = [1,2,3,4,5,6,7,8,9,0] for(let i=0;i
php 2022. 5. 27. 16:39
[php]이프문 축약형 php if문 href="javascript:void(0)" onClick="alert('정회원입니다.')" href="/join2.php" onClick="alert('일반회원입니다.')" href="./join.php" >// 조건 1,2 를 모두 만족할때  → 페이지 이동 X// 조건 1 혹은 조건 2만 만족할때 → 얼럿 후 join2로 이동// 모두 만족하지않을때 → join으로 이동 1 2 3축약형============================로 사용하는게 아님
js 2022. 5. 27. 15:12
[js]제이쿼리 라이브러리 모음 1. slick https://kenwheeler.github.io/slick/ slick - the last carousel you'll ever need slick is a responsive carousel jQuery plugin that supports multiple breakpoints, CSS3 transitions, touch events/swiping & much more! kenwheeler.github.io 2. swiper https://swiperjs.com/ Swiper - The Most Modern Mobile Touch Slider Swiper is the most modern free mobile touch slider with hardware accelerated tr..
js 2022. 5. 25. 15:09
[js]변수 출력 방법, 템플릿 리터럴 (백틱Backtick 사용) See the Pen Untitled by sangmok-ye (@sangmok-ye) on CodePen. **백틱 안에서 백틱을 쓰기 위해서는 역슬래쉬 사용
js 2022. 5. 23. 14:45
[js]자바스크립트 선택자 종류 javaScript 선택자 종류 1. getElement~로 시작하는 선택자 - getElementById - getElementsByClassName - getElementsByTagName - getElementsByTagNameNS 2. querySelector~로 시작하는 선택자 - querySelector - querySelectorAll → getElement에 s가 붙은 것들과 querySelectorAll은 배열로 선택자를 가져옴 변수로 지정해서 가져올 경우 인덱스를 사용하여 선택하여야함 → 그 외, getElementById, querySelector는 가장 첫번째 요소를 선택함 let box = document.getElementById("box") console.log(box) doc..
js 2022. 5. 20. 17:41
[js]array 배열 기초 See the Pen array 기초 by sangmok-ye (@sangmok-ye) on CodePen. let array = [ {"name":"제품명1","unit":"단가1"}, {"name":"제품명2","unit":"단가2"}, {"name":"제품명3","unit":"단가3"}, {"name":"제품명4","unit":"단가4"}, ] console.log(array[i].name) /* ========================================= */ let array= [ "제품명1", "제품명2", "제품명3", "제품명4", ] console.log(array[i]) php 배열 추출 explode() $str = "hi hello bye" $array = explod..

top