JS资料:js去空格,去左空格,去右空格。

SCRIPT LANGUAGE="JavaScript">  
<!--  

// Trim() , Ltrim() , RTrim()  
String.prototype.Trim =function()   
{   
returnthis.replace(/(^\s*)|(\s*$)/g, "");   
}   
String.prototype.LTrim
=function()   
{   
returnthis.replace(/(^\s*)/g, "");   
}   
String.prototype.RTrim
=function()   
{   
returnthis.replace(/(\s*$)/g, "");   
}   
//-->  
</SCRIPT>  
<input type="text" value="   前后都是空格    " id="space">  
<input type="button" value="去前后空格" onclick="javascript:document.getElementById('space').value=document.getElementById('space').value.Trim();document.getElementById('space').select();">  
<input type="button" value="去前空格" onclick="javascript:document.getElementById('space').value=document.getElementById('space').value.LTrim();document.getElementById('space').select();">  
<input type="button" value="去后空格" onclick="javascript:document.getElementById('space').value=document.getElementById('space').value.RTrim();document.getElementById('space').select();">  
<input type="button" value="还原" onclick="javascript:document.getElementById('space').value='     前后都是空格    ';">
<a href="http://www.jobsky.net/"  target="_blank">访问jobsky.net</a>

posted on 2012-03-23 15:24  W@SuperC  阅读(361)  评论(0)    收藏  举报

导航