Last active
May 29, 2016 04:59
-
-
Save nishinoshake/75cf674184ac85dde664 to your computer and use it in GitHub Desktop.
JSで文字数制限
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
function restrictString(str, restrict) { | |
postTxt = '...'; | |
if ( str.length > restrict ) str = str.substr(0, restrict) + postTxt; | |
return str; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment