Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
从 jquery/javascript 中的字符串末尾修剪空格的最简单方法是什么?示例: "my string "应该返回"my string"
"my string "
"my string"
谢谢
jQuery 的$.trim()将修剪字符串中的前导和尾随空格:
str = $.trim(str);
在较新的浏览器中还支持原生trim()方法,并且MDN上有一个 polyfill 可用于不支持的浏览器。
trim()
如果由于某种原因您只想修剪尾随空格,您可以执行以下操作:
String.prototype.trimTrail = function () { return this.replace(/\s+$/, ''); };
用作:
str = str.trimTrail();
试试这个来复制一个正确的修剪:
var trimmedString = fullString.replace(/\s+$/,”");