jQuery 修剪不删除?

发布于 2024-12-04 17:09:21 字数 512 浏览 1 评论 0原文

如何修剪字符串中的所有空格,即使它们是由不间断空格引起的 ( )

例如:

var foo = $.trim($('<p>&nbsp;foo&nbsp;</p>').text());

foo 的值为 " foo " 而不是 "foo"

更新 所以,问题不在于 jQuery 的修剪功能。效果很好。问题出在 MSAjax 的修剪功能上。 jQuery 正确地使用函数检测,如果它们不存在,则使用它的实现。

不幸的是,MSAJax 的修剪实现不会删除字符 160(不间断空格)。然而,jQuery 正则表达式修剪确实如此,因为它意识到 IE 不包含 \s 中的 char 160。

为什么愚蠢的浏览器问题总是最终成为 M$ 如何实现某些东西的问题???

How can I trim all spaces from a string, even when they are caused by a non-breaking spaces ( )

For example:

var foo = $.trim($('<p> foo </p>').text());

The value of foo is " foo " instead of "foo"

UPDATE
So, the problem wasn't jQuery's trim function. It works great. The problem is MSAjax's trim function. jQuery, rightly, uses function detection and if they don't exist, uses it's implementation.

Unfortunately, MSAJax's implementation of trim doesn't strip char 160 (non breaking space). However, the jQuery regex trim does, as it realizes that IE doesn't include char 160 in \s.

Why do stupid browser problems always end up being an issue with how M$ implements something???

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

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

发布评论

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

评论(3

心凉怎暖 2024-12-11 17:09:21

所以,问题不在于 jQuery 的修剪功能。效果很好。问题出在 MSAjax 的修剪功能上。 jQuery 正确地使用函数检测,如果它们不存在,则使用它的实现。

不幸的是,MSAJax 的修剪实现不会删除字符 160(不间断空格)。然而,jQuery 正则表达式修剪确实如此,因为它意识到 IE 不包含 \s 中的 char 160。

为什么愚蠢的浏览器问题总是最终成为 M$ 如何实现某些东西的问题???

So, the problem wasn't jQuery's trim function. It works great. The problem is MSAjax's trim function. jQuery, rightly, uses function detection and if they don't exist, uses it's implementation.

Unfortunately, MSAJax's implementation of trim doesn't strip char 160 (non breaking space). However, the jQuery regex trim does, as it realizes that IE doesn't include char 160 in \s.

Why do stupid browser problems always end up being an issue with how M$ implements something???

软甜啾 2024-12-11 17:09:21

你确定吗?我刚才尝试了对您的代码片段进行了稍微修改的版本:

var foo = $.trim($('<p> foo </p>').text());
alert('#' + foo + '#');

并且“foo”两侧都没有空格。 http://jsfiddle.net/Ux7Wc/

这是在 Firefox 5 中使用 jQuery 1.6.2。

Are you sure about that? I tried a slightly modified version of your snippet just now:

var foo = $.trim($('<p> foo </p>').text());
alert('#' + foo + '#');

and there were no spaces on either side of the 'foo'. http://jsfiddle.net/Ux7Wc/

This was using jQuery 1.6.2 in Firefox 5.

谷夏 2024-12-11 17:09:21

这是 JQuery 1.4 之前的一个错误。请升级。

http://bugs.jquery.com/ticket/4980

This is a bug before JQuery 1.4. Please upgrade.

http://bugs.jquery.com/ticket/4980

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