Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

StyleSheetList

这篇翻译不完整。请帮忙从英语翻译这篇文章

StyleSheetLists 接口表示一个StyleSheet的列表。

这是一个像数组一样的对象,但是不能使用数组方法进行遍历。但是它可以通过for循环遍历其下标,或者把它转换成数组。

实例

// 通过数组的方法得到当前文档所有CSS规则
var allCSS = [].slice.call(document.styleSheets)
                     .reduce(function (prev, styleSheet) {
        if (styleSheet.cssRules) {
            return prev +
                [].slice.call(styleSheet.cssRules)
                        .reduce(function (prev, cssRule) {
                    return prev + cssRule.cssText;
                });
        } else {
            return prev;
        }
    });

文档标签和贡献者

 此页面的贡献者: helloguangxue
 最后编辑者: helloguangxue,