1. java方式
String.trim();
2.js方式
function Trim(str)
{
return str.replace(/(^\s*)|(\s*$)/g, "");
}
3.jQuery方式
var $title = $.trim($("#title").val());
1. java方式
String.trim();
2.js方式
function Trim(str)
{
return str.replace(/(^\s*)|(\s*$)/g, "");
}
3.jQuery方式
var $title = $.trim($("#title").val());