js 数组问题 请教
<input name="two" type="text" id="two" /><input type="button" value="button" onclick="ong()"/>
<script>
function ong(){
var a=[document.getElementById("two").value]
alert(a[1])
}
</script>
为什么上面的 即时输入 1,2,3
却提不出 a[1]
而下面的却可以
<input type="button" value="button" onclick="ong()"/>
<script>
function ong(){
var a=[1,2,3]
alert(a[1])
}
</script>
正确的该怎么写 能够获取到 即时输入的 数组?