jQuery가 특정 문자로 시작하는 ID 요소를 선택하는 방법: jquery의 [[attribute=value]] 선택기를 사용하여 지정된 속성과 지정된 문자열이 있는 각 요소를 선택합니다.
이 방법은 모든 브랜드의 컴퓨터에 적합합니다.
특정 문자로 시작하는 ID 요소를 선택하는 jQuery 방법:
jQuery를 사용하여 ID가 다음으로 시작하는 요소를 선택하려는 경우 특정 문자를 얻으려면 jquery의 [속성=값] 선택기를 사용할 수 있습니다. [attribute=value]
선택기는 지정된 속성을 갖고 지정된 문자열로 시작하는 모든 요소를 선택합니다. [attribute=value]
选择器选取每个带有指定属性且以指定字符串开头的元素。
语法:
$("[attribute^='value']")
下面通过示例来看看[attribute^=value]
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> #demo_div { background: green; height: 100px; width: 200px; margin: 0 auto; color: white; line-height: 100px; } </style> <script src="https://code.jquery.com/jquery-1.10.2.js"></script> </head> <body style = "text-align:center;"> <div id = "demo_div"> 这是div盒。</div> <p id = "demo_p" style ="font-size: 19px; font-weight: bold;"></p> <button onClick = "GFG_Fun()">点击这里</button> <p id = "demo_DOWN" style = "color: white; font-size: 24px; font-weight: bold;"> </p> <script> $('#demo_p').text("点击按钮,选择id以“demo”开头的元素并更改背景色。"); function GFG_Fun() { $( "[id^='demo']" ).css("background-color", "pink"); $('#demo_DOWN').text("测试文字!"); } </script> </body> </html>
[attribute^=value]
선택기의 사용법을 예시를 통해 살펴보겠습니다. 예: ID가 "demo"로 시작하는 요소를 선택하고 배경색을 변경합니다. rrreee출력:
관련 무료 학습 권장 사항:javascript🎜(동영상) 🎜🎜
위 내용은 jQuery 특정 문자로 시작하는 ID 요소를 선택하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!