UNPKG

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