728x90
jqeury 로 셀렉터 선택자에 접근할 때 문자열 존재여부로 찾기
태그의 attr 속성값을 유동적으로 생성할 때 활용할 수 있다.
▶ input 의 name 이 'selector' 와 일치하는 요소
$("input[name='selector']")
▶ input 의 id 가 'selector' 로 시작하는 요소 (like 'selector%')
$("input[id^='selector']")
▶ input 의 name 에 'selector' 가 포함된 요소 (like '%selector%')
$("input[name*='selector']")
▶ input 의 id 가 'selector' 로 끝나는 요소 (like '%selector')
$("input[id$='selector']")
LIST
'Develop' 카테고리의 다른 글
[Thymleaf 타임리프] form post 전송 시 403 forbidden 에러 해결 (12) | 2024.09.15 |
---|---|
[타임리프 Thymeleaf] 반복문 while 같은 단순반복 처리 (4) | 2024.09.11 |
[Javascript] 스크롤 div 밑에 영역 감지해서 이벤트 발생시키기 (19) | 2024.09.06 |
[Thymeleaf 타임리프] ModelAndView 리턴페이지에서 특정 id 영역만 변경하고 싶을 때 (12) | 2024.09.05 |
[Mybatis] PK 를 count 혹은 max 쿼리로 생성 후 리턴받기 (16) | 2024.09.03 |