<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>js中对String去空格</title>
<style type="text/css">
body {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript">
$(function() {
var myAction = {};
$.extend(myAction, {
test: function() {
var str = ' x u tong bao ';
var temp = str.replace(/\s+/g, '');
console.log(':' + temp + '.');
var temp = str.replace(/^\s+|\s+$/g, '');
console.log(':' + temp + '.');
var temp = str.replace(/^\s+/, '');
console.log(':' + temp + '.');
var temp = str.replace(/(\s+$)/g, '');
console.log(':' + temp + '.');
var temp = $.trim(str);
console.log(':' + temp + '.');
}
});
var init = function() {
myAction.test();
}();
})
</script>
</body>
</html>