手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >一个JavaScript用逗号分割字符串实例
一个JavaScript用逗号分割字符串实例
摘要://用逗号隔开字符串成数组打印。每天一个JavaScript实例-分割字符串window.onload=function(){varkeyw...

//用逗号隔开字符串成数组打印。 <!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>

【一个JavaScript用逗号分割字符串实例】相关文章:

JavaScript实现Iterator模式实例分析

JavaScript常用数组算法小结

精通JavaScript的this关键字

Javascript节点关系实例分析

javaScript中with函数用法实例分析

JavaScript中exec函数用法实例分析

javaScript中push函数用法实例分析

javascript事件冒泡实例分析

Javascipt中处理字符串之big()方法的使用

javaScript中slice函数用法实例分析

精品推荐
分类导航