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

A JavaScript example of splitting a string with commas_javascript skills

WBOY
Release: 2016-05-16 16:35:52
Original
1652 people have browsed it
//用逗号隔开字符串成数组打印。 
<!doctype html> 
<html lang="en"> 
<head> 
<meta charset="utf-8"> 
<title>每天一个JavaScript实例-分割字符串</title> 
<script> 
window.onload = function(){ 
var keywordList = prompt("输入字符,用","分开"); 
var arrayList = keywordList.split(",",2); 
console.log(arrayList); 
var resultString=""; 
for(var i = 0; i < arrayList.length;i++){ 
resultString+="keyword:" + arrayList[i] + "<br />"; 
} 
var aaa = document.getElementById("result"); 
aaa.innerHTML = resultString; 
} 
</script> 
</head> 

<body> 
<div id = "result"></div> 
</body> 
</html>
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