xxxxxxxxxx
<!DOCTYPE html>
<html>
<title>JavaScript split() 方法拆分字符串 - 基础教程(div.cn)</title>
<body>
<h1>JavaScript split() 方法</h1>
<p>点击按钮显示拆分后的数组值:</p>
<button onclick="myFunc()">Click</button>
<p id="x"></p>
<script>
function myFunc() {
var str = 'Air Pollution is introduction of chemicals to the atmosphere.';
var arr = str.split("");
document.getElementById('x').innerHTML = arr;
}
</script>
</body>
</html>