IT/제이쿼리

제이쿼리 attributeContainsPrefix selector

조원태 2017. 8. 6. 14:28
반응형

제이쿼리 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>

반응형