UNPKG

275 BJavaScriptView Raw
1/* -------------------
2 获得样式
3 ------------------- */
4Element.prototype.getStyles = function () {
5 return window.getComputedStyle(this);
6};
7Element.prototype.getStyleValue = function (property) {
8 return window.getComputedStyle(this).getPropertyValue(property);
9};
\No newline at end of file