본문 바로가기
2019/jQuery

jQuery 속성 선택자(attribute)

by SOLYI 2019. 12. 10.

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
속성 선택자 -attribute
// a태그의 href속성
// *$('a[href=]')*/
 
 
// 일치하는~  = 
$('input[type="text"]')   //input태그의 type속성
     .val("hello")
     .css('background-color','pink'); 
 
//com으로 끝나는~  $
$('a[href$="com"]')
    .addClass('test');  //css에 있는 클래스 가져와서 적용시키기
          // .test{
          //     background-color: forestgreen;
          //     color:floralwhite;
          // }
 
 
//mailto로 시작하는~ ^
$('a[href^="mailto"]')
    .addClass('green');
 
 
// google을 포함하는~ *
$('a[href*="google"]')
    .addClass('red');
반응형

'2019 > jQuery' 카테고리의 다른 글

/// jQuery 3개 메서드체인, 객체,콜백함수  (0) 2019.12.11
jQuery find와 filter  (0) 2019.12.11
jQuery 위치관련 필터 선택자(index)  (0) 2019.12.10
jQuery id/class별 css 설정 방법  (0) 2019.12.10
jQuery 사용 방법  (0) 2019.12.10