jQuery trim doesn't remove  ?

牧云@^-^@ 提交于 2019-12-23 10:54:30

问题


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>&nbsp;foo&nbsp;</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???


回答1:


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???




回答2:


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

var foo = $.trim($('<p>&nbsp;foo&nbsp;</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.




回答3:


This is a bug before JQuery 1.4. Please upgrade.

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



来源:https://stackoverflow.com/questions/7418812/jquery-trim-doesnt-remove-nbsp

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!