日期:2014-05-16 浏览次数:20404 次
<script>
function doclick(){
var tt = " 1234 fdsef ";
String.prototype.Trim = function()
{
return this.replace(/(^\s*) |(\s*$)/g, ""); //去掉左右空格
}
String.prototype.LTrim = function()
{
return this.replace(/(^\s*)/g, ""); // 去掉左空格
}
String.prototype.RTrim = function()
{
return this.replace(/(\s*$)/g, ""); //去掉右空格
}
String.prototype.TrimAll = function()
{
return this.replace(/\s+/g,""); //去掉所有空格
}