1、去除首尾空格:

 var txt = $('#Txt').val().trim();      

txt = txt.replace(/(^\s*)|(\s*$)/g, "");

2、去除所有空格:

 txt = txt.replace("//s/g", "");