修剪以删除空白

发布于 2024-09-29 16:01:27 字数 242 浏览 4 评论 0原文

jQuery trim 不起作用。我编写了以下命令来删除空格。有什么问题吗?

var str = $('input').val();

str = jquery.trim(str);
console.log(str);

小提琴示例。

jQuery trim not working. I wrote the following command to remove white space. Whats wrong in it?

var str = $('input').val();

str = jquery.trim(str);
console.log(str);

Fiddle example.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

泛泛之交 2024-10-06 16:01:27

jQuery.trim() 大写 Q?

$.trim()

编辑 (2021):这个答案已经有 11 岁了 (2010)。下面发布了更好的解决方案。

jQuery.trim() capital Q?

or $.trim()

Edit (2021): This answer is 11 years old (2010). There are better solutions posted below.

治碍 2024-10-06 16:01:27

No need for jQuery

JavaScript does have a native .trim() method.

var name = "    John Smith  ";
name = name.trim();

console.log(name); // "John Smith"

Example Here

String.prototype.trim()

The trim() method removes whitespace from both ends of a string. Whitespace in this context is all the whitespace characters (space, tab, no-break space, etc.) and all the line terminator characters (LF, CR, etc.).

樱娆 2024-10-06 16:01:27

或者只使用 $.trim(str)

or just use $.trim(str)

酷炫老祖宗 2024-10-06 16:01:27

为什么不试试这个呢?

html:

<p>
  a b c
</p>

js:

$("p").text().trim();

Why not try this?

html:

<p>
  a b c
</p>

js:

$("p").text().trim();
樱花落人离去 2024-10-06 16:01:27

试试这个

  $('input').val($('input').val().trim());

Try this

  $('input').val($('input').val().trim());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文