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.
我正在寻找替换空格(非中断空间)的解决方案。 这是我尝试过的:
var text = this.get('text').toLowerCase().replace(' ','');
但它没有按预期工作,也没有替换所有空格。 如果相关,我正在使用 MooTools。
Mootools replace 仅替换第一个实例,除非您使用带有全局修饰符的正则表达式。试试这个。
var text = this.get('text').toLowerCase().replace(/\s/g,'');