“Baca properti dari file CSS” Kode Jawaban

Baca properti dari file CSS

.box {
    position:absolute;
    background-color:red;
    height:10px;
    width:10px;
}
Bored Beetle

Baca properti dari file CSS

function propertyFromStylesheet(selector, attribute) {
    var value;

    [].some.call(document.styleSheets, function (sheet) {
        return [].some.call(sheet.rules, function (rule) {
            if (selector === rule.selectorText) {
                return [].some.call(rule.style, function (style) {
                    if (attribute === style) {
                        value = rule.style.getPropertyValue(attribute);
                        return true;
                    }

                    return false;
                });
            }

            return false;
        });
    });

    return value;
}

console.log(propertyFromStylesheet(".box", "height"));
Bored Beetle

Jawaban yang mirip dengan “Baca properti dari file CSS”

Pertanyaan yang mirip dengan “Baca properti dari file CSS”

Lebih banyak jawaban terkait untuk “Baca properti dari file CSS” di CSS

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya