Home >Web Front-end >JS Tutorial >A JavaScript example of splitting a string with commas_javascript skills

A JavaScript example of splitting a string with commas_javascript skills

WBOY
WBOYOriginal
2016-05-16 16:35:521701browse
//用逗号隔开字符串成数组打印。 
<!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>
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