질문:
CSS 규칙 값의 완전한 CSS 선언을 어떻게 얻을 수 있습니까? 특정 클래스로 문자열?
컨텍스트:
다음 HTML 및 CSS를 고려하세요.
<html> <head> <style> .test { width: 80px; height: 50px; background-color: #808080; } </style> </head> <body> <div class="test"></div> </body> </html>
이 CSS가 주어지면 다음을 표시하는 문자열을 반환하고 싶습니다. 개별 스타일에 직접 액세스하지 않고 .test 클래스의 인라인 스타일 표현
답변:
특정 클래스의 완전한 CSS 선언을 얻으려면:
function getStyle(className) { var cssText = ""; // Get all CSS rules var classes = document.styleSheets[0].rules || document.styleSheets[0].cssRules; // Iterate through rules for (var x = 0; x < classes.length; x++) { // If the class name matches the rule if (classes[x].selectorText == className) { // Capture the CSS declaration cssText += classes[x].cssText || classes[x].style.cssText; } } // Return the captured CSS declaration return cssText; } // Usage example: var result = getStyle(".test"); console.log(result); // Output: "width: 80px; height: 50px; background-color: #808080;"
위 내용은 CSS 클래스 선언을 문자열로 어떻게 검색할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!