Home >Web Front-end >JS Tutorial >A JavaScript example code to remove blanks at the end of a string_javascript skills

A JavaScript example code to remove blanks at the end of a string_javascript skills

WBOY
WBOYOriginal
2016-05-16 16:35:561042browse
<!DOCTYPE html> 
<html> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 
<title>每天一个JavaScript实例-去除字符串末尾的空白</title> 
<script> 
function white(){ 
var input = document.getElementById("inputid"); 
var lines = input.value.split("\n"); 
var resultString = ""; 
for (var i = 0; i < lines.length; i++){ 
var string = lines[i].trim(); 
resultString += string + "-"; 
} 
alert(resultString); 
} 
</script> 
</head> 

<body> 
<textarea id="inputid" placeholder="请输入多行字符串"></textarea> 
<a href="#" onClick="white()">clickMe</a> 
</body> 
</html>

Detect lower version browsers, backward compatible:

if(typeof String.trim == "undefined") 
String.prototype.trim = function(){ 
return this.replace(/(^\s*)|(\s*$)/g,""); 
} 
}
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn