js去除空格函数
来源:phperz.com 作者:phperz.com 发布时间:2009-12-21
在php中,去除空格有trim,ltrim,rtrim函数,现在我们用javascri
在php中,去除空格有trim,ltrim,rtrim函数,现在我们用javascript来实现相同的功能
以下为引用的内容: <SCRIPT LANGUAGE="JavaScript"> <!-- // Trim() , Ltrim() , RTrim() 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, ""); } //--> </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=' 前后都是空格 ';">
|
延伸阅读:JAVASCRIPT做激活搜索框关键字消失,失去焦点关键字出现的效果如何去掉点击超链接时产生的虚线边框