Skip to content

Instantly share code, notes, and snippets.

@xyqfer
Created September 28, 2013 07:19
Show Gist options
  • Select an option

  • Save xyqfer/6739459 to your computer and use it in GitHub Desktop.

Select an option

Save xyqfer/6739459 to your computer and use it in GitHub Desktop.
去除首尾空白
if (!String.prototype.trim) {
String.prototype.trim = function() {
return this.replace(/^\s+/, "").replace(/\s+$/, "");
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment