>웹 프론트엔드 >JS 튜토리얼 >JavaScript/jQuery를 사용하여 CSS 의사 요소(::before, ::after)를 선택하고 조작하려면 어떻게 해야 합니까?

JavaScript/jQuery를 사용하여 CSS 의사 요소(::before, ::after)를 선택하고 조작하려면 어떻게 해야 합니까?

Mary-Kate Olsen
Mary-Kate Olsen원래의
2024-12-21 08:37:10712검색

How Can I Select and Manipulate CSS Pseudo-elements (::before, ::after) with JavaScript/jQuery?

JavaScript/jQuery를 사용하여 CSS 의사 요소 선택 및 조작

JavaScript 또는 jQuery를 사용하여 ::before 및 ::after와 같은 CSS 의사 요소를 선택하고 조작하려면, 몇 가지 다른 기술을 사용할 수 있습니다.

다음을 사용하여 콘텐츠 조작 jQuery

jQuery를 사용하면 다음과 같이 의사 요소의 콘텐츠를 검색하고 조작할 수 있습니다.

// Get the content of ::after for an element with class "span"
var content = $('.span::after').text();

콘텐츠를 변경하려면 새 값을 할당하면 됩니다.

// Change the content of ::after for elements with class "span"
$('.span::after').text('bar');

데이터로 콘텐츠 조작 속성

또는 데이터 속성과 jQuery를 사용하여 의사 요소에 콘텐츠를 전달할 수 있습니다.

<!-- Element with a data attribute -->
<span data-content="foo">foo</span>
// Get the content from the data attribute
var content = $('span').attr('data-content');

// Manipulate the pseudo-element content
$('.span::after').text(content);

마우스를 올리면 콘텐츠를 변경하려면 이 접근 방식을 결합할 수 있습니다. 이벤트 핸들러를 사용하면:

$('span').hover(function() {
  // Change the content of ::after on hover
  $(this).attr('data-content', 'bar');
});
span::after {
  content: attr(data-content) /* Combine this with seucolega's solution */ ' any other text you may want';
}

이러한 기술을 사용하면 이벤트를 동적으로 제어할 수 있습니다. 웹 애플리케이션에서 의사 요소의 내용과 모양.

위 내용은 JavaScript/jQuery를 사용하여 CSS 의사 요소(::before, ::after)를 선택하고 조작하려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.