반응형
href in jquery로 요소를 얻는 방법은 무엇입니까?
jquery나 javascript에 있는 href 속성으로 요소를 얻고 싶습니다.그게 가능한가요?
예, jQuery의 속성 선택기를 사용할 수 있습니다.
var linksToGoogle = $('a[href="https://google.com"]');
또는 특정 URL로 시작하는 링크를 원하는 경우 선택기와 함께 속성-starts-with selector를 사용합니다.
var allLinksToGoogle = $('a[href^="https://google.com"]');
href 속성에 URL의 일부가 있는 요소를 가져오려면 다음을 사용할 수 있습니다.
$( 'a[href*="google.com"]' );
google.com 이 포함된 href를 가진 모든 요소가 선택됩니다. 예:
- http://google.com
- http://www.google.com
- https://www.google.com/ #q=방법+방법+요소 가져오기+별+href+in+jquery%3F
아래 댓글에서 @BalusC가 언급한 바와 같이, 그것은 또한 다음과 같은 요소들과 일치할 것입니다.google.com
href의 어느 위치에서든, 예를 들어.blahgoogle.com
.
var myElement = $("a[href='http://www.stackoverflow.com']");
http://api.jquery.com/attribute-equals-selector/
네.
$('a[href=\'http://google.com\']')
http://api.jquery.com/attribute-equals-selector/
언급URL : https://stackoverflow.com/questions/3105984/how-to-get-an-element-by-its-href-in-jquery
반응형
'programing' 카테고리의 다른 글
단일 행에 대한 일대다 SQL SELECT (0) | 2023.09.03 |
---|---|
jQuery: 자식 제외 함수를 클릭합니다. (0) | 2023.09.03 |
Mysql 워크벤치에서 두 모델 간에 테이블을 복사하는 방법은 무엇입니까? (0) | 2023.09.03 |
MariaDB 다중 행 삽입 순서 (0) | 2023.09.03 |
asp.net 에서 "Access-Control-Allow-Origin" 헤더를 구현하는 방법 (0) | 2023.09.03 |