欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

一個(gè)JavaScript用逗號(hào)分割字符串實(shí)例

 更新時(shí)間:2014年09月22日 17:06:00   投稿:whsnow  
分割字符串的方法有很多,這篇文章主要介紹了一個(gè)JavaScript用逗號(hào)分割字符串實(shí)例,需要的朋友可以參考下
//用逗號(hào)隔開字符串成數(shù)組打印。 
<!doctype html> 
<html lang="en"> 
<head> 
<meta charset="utf-8"> 
<title>每天一個(gè)JavaScript實(shí)例-分割字符串</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>

相關(guān)文章

最新評(píng)論