日期:2014-05-16 浏览次数:20366 次
<script> var array = []; </script> <input type='button' value='1' onclick='array.push(this.value)' /> <input type='button' value='2' onclick='array.push(this.value)' /> <input type='button' value='3' onclick='array.push(this.value)' /> <input type='button' value='show' onclick='alert(array)'/>
------解决方案--------------------