programing

href in jquery로 요소를 얻는 방법은 무엇입니까?

goodsources 2023. 9. 3. 16:14
반응형

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를 가진 모든 요소가 선택됩니다. 예:

아래 댓글에서 @BalusC가 언급한 바와 같이, 그것은 또한 다음과 같은 요소들과 일치할 것입니다.google.comhref의 어느 위치에서든, 예를 들어.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

반응형