jQuery 修剪不删除?
如何修剪字符串中的所有空格,即使它们是由不间断空格引起的 (
)
例如:
var foo = $.trim($('<p> foo </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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
所以,问题不在于 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???
你确定吗?我刚才尝试了对您的代码片段进行了稍微修改的版本:
并且“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:
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.
这是 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