제이쿼리 attributeContainsPrefix selector > 개발자팁

개발자팁

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

제이쿼리 attributeContainsPrefix selector 정보

jQuery 제이쿼리 attributeContainsPrefix selector

본문

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

추천
0
  • 복사

댓글 0개

© SIRSOFT
현재 페이지 제일 처음으로