js用正则表达式如何去除中间空格?求指教
'dhkja af asd f ads f aaa ads af '.replace(/\s/g,'')
:$("#id").value.trim();
str.replace(" ","") 用replace替换空格就可以了
谢谢各位的解答,已解决