Created
December 10, 2013 18:07
-
-
Save pantaovay/7895179 to your computer and use it in GitHub Desktop.
DOM操作消耗资源 From http://www.ituring.com.cn/article/64610
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 糟糕 | |
| h = $('#element').height(); | |
| $('#element').css('height',h-20); | |
| // 建议 | |
| $element = $('#element'); | |
| h = $element.height(); | |
| $element.css('height',h-20); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment