Home > Web Front-end > JS Tutorial > body text

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

WBOY
Release: 2016-05-16 16:35:56
Original
1010 people have browsed it
<!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>
Copy after login

Detect lower version browsers, backward compatible:

if(typeof String.trim == "undefined") 
String.prototype.trim = function(){ 
return this.replace(/(^\s*)|(\s*$)/g,""); 
} 
}
Copy after login
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!