工程是一门科学,科学是严谨的。

JS 获取元素当前的样式信息

1 HTMLElement.prototype.__defineGetter__("currentStyle", function () {
2     return this.ownerDocument.defaultView.getComputedStyle(this, null);
3 });

 

example:

1 document.body.currentStyle['width']

 

posted @ 2013-08-19 13:54  大圣的笑  阅读(2074)  评论(0编辑  收藏  举报