제이쿼리 attributeContainsPrefix selector

· 2017-08-06 (일) 14:02:26 · 2201

제이쿼리 attributeContainsPrefix selector


설명 : 지정된 속성을 가진 요소를 주어진 문자열과 같은 값 또는 해당 문자열로 시작하여 하이픈 (-)으로 선택합니다.

jQuery ( "[attribute | = 'value']")

attribute : 속성 이름.


value : 속성 값. 유효한 식별자 또는 따옴표 붙은 문자열이 될 수 있습니다 .


<!doctype html>

<html lang="en">

<head>

  <meta charset="utf-8">

  <title>attributeContainsPrefix demo</title>

  <style>

  a {

    display: inline-block;

  }

  </style>

  <script src="https://code.jquery.com/jquery-1.10.2.js"></script>

</head>

<body>

 

<a href="example.html" hreflang="en">Some text</a>

<a href="example.html" hreflang="en-UK">Some other text</a>

<a href="example.html" hreflang="english">will not be outlined</a>

 

<script>

$( "a[hreflang|='en']" ).css( "border", "3px dotted green" );

</script>

 

</body>

</html>

|
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

5,403건

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
jQuery 17-08-11 조회 1,798
jQuery 17-08-11 조회 2,692
jQuery 17-08-11 조회 2,173
PHP 17-08-10 조회 4,210
jQuery 17-08-10 조회 2,065
jQuery 17-08-10 조회 2,355
jQuery 17-08-10 조회 2,208
jQuery 17-08-09 조회 1,956
jQuery 17-08-09 조회 2,656
jQuery 17-08-09 조회 2,172
jQuery 17-08-08 조회 2,500
jQuery 17-08-08 조회 2,246
jQuery 17-08-08 조회 2,499
jQuery 17-08-07 조회 2,181
jQuery 17-08-07 조회 1,992
jQuery 17-08-07 조회 1,796
jQuery 17-08-06 조회 2,202
jQuery 17-08-06 조회 2,839
jQuery 17-08-06 조회 1,863
jQuery 17-08-04 조회 2,258
jQuery 17-08-04 조회 2,234
jQuery 17-08-04 조회 3,075
jQuery 17-08-03 조회 2,542
jQuery 17-08-03 조회 2,426
jQuery 17-08-03 조회 2,415
jQuery 17-08-02 조회 2,172
jQuery 17-08-02 조회 1,548
jQuery 17-08-02 조회 2,242
jQuery 17-08-01 조회 2,977
jQuery 17-08-01 조회 2,870