Skip to content

Instantly share code, notes, and snippets.

@lanqy
Created February 16, 2013 06:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lanqy/4965852 to your computer and use it in GitHub Desktop.
Save lanqy/4965852 to your computer and use it in GitHub Desktop.
/**
* IE9表格渲染bug修复,表格数据量大时,ie9下莫名其妙出现空的td
*/
IE9TabelRenderFixed: function(str){
var reg = new RegExp('>[ \t\r\n\v\f]*<', 'g');
return str.replace(reg, '><');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment