You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
varstr=' as '//方法1str=str.replace(/\s*/g,"");//去除所有空格str=str.replace(/^\s*|\s*$/g,"");//去除两头空格str=str.replace(/^\s*/,"");//去除左边空str=str.replace(/(\s*$)/g,"");//去除右边空格//方法2:trim()方法:只能去除两边空格functiontrim(str){if(str&&typeofstr==="string"){returnstr.replace(/(^\s*)|(\s*)$/g,"");//去除前后空白符}}//方法3 jquery $.trim(str)
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: