How to Retrieve Values of Invalid/Custom CSS Properties in JavaScript?

Patricia Arquette
Release: 2024-10-24 07:12:30
Original
343 people have browsed it

How to Retrieve Values of Invalid/Custom CSS Properties in JavaScript?

Accessing Values of Invalid/Custom CSS Properties in JavaScript

When defining custom or invalid CSS properties like "-my-foo", developers may wonder if it's possible to retrieve their values from JavaScript.

To answer this question, let's assume we have CSS as shown below:

div {
    -my-foo: 42;
}
Copy after login

Attempting to access the value of "-my-foo" from JavaScript via the CSSStyleDeclaration object may result in difficulties. Tests in both Chrome and Firefox show that these browsers skip invalid properties and only expose valid ones. For instance, with CSS like:

div {
    width: 100px;
    -my-foo: 25px;
}
Copy after login

the CSSStyleDeclaration object will only contain the following keys:

0: width
cssText: "width: 100px"
length: 1
Copy after login

Therefore, obtaining the value of "-my-foo" from JavaScript using this method is not feasible.

However, the DOM-Level-2 Style specification states that "an implementation [browser] is expected to provide access to all specified properties... through the CSSStyleDeclaration interface." This suggests that browsers should theoretically list invalid properties in the object, even if they don't recognize them.

As a workaround, it's possible to parse the raw CSS text to retrieve the value of the custom property. However, this approach is not recommended as it involves significant effort and may not always be reliable or efficient.

The above is the detailed content of How to Retrieve Values of Invalid/Custom CSS Properties in JavaScript?. For more information, please follow other related articles on the PHP Chinese website!

source:php
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!