Skip to content

Instantly share code, notes, and snippets.

@pantaovay
Created December 10, 2013 18:07
Show Gist options
  • Select an option

  • Save pantaovay/7895179 to your computer and use it in GitHub Desktop.

Select an option

Save pantaovay/7895179 to your computer and use it in GitHub Desktop.
DOM操作消耗资源 From http://www.ituring.com.cn/article/64610
// 糟糕
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