我想创建用户定义的函数来修剪 Javascript 中的单词
我怎样才能修剪Javascript中的单词......???
how can i trim the word in Javascript.....???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我怎样才能修剪Javascript中的单词......???
how can i trim the word in Javascript.....???
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
如果您可以使用 jQuery,只需使用
$.trim()
。如果没有,只需在浏览器本身不支持的情况下向 String 原型添加一个修剪方法:
然后您可以使用 var newstring = somestring.trim();
If you can use jQuery, simply use
$.trim()
.If not, just add a trim method to the String prototype if the browser doesn't support it natively:
Then you can use
var newstring = somestring.trim();
如果通过
trim
表示删除多余的空白,请将其放在脚本的顶部并像这样使用它
If by
trim
, you mean remove extra whitepace, put this at the top of your scriptAnd use it like this
您可以添加下面的功能
// javascript 中的修剪函数
希望它有帮助...
You can add the function below
// Trim function in javascript
Hope it helped...