Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 push() 方法我在数组中添加了值,但是当我使用 push() 再次添加时,值被添加到单独的数组中。如何在现有数组中动态添加值?请提供示例代码帮助
像这样全局声明数组
var arr = [];
然后使用 push() 方法在数组中添加值,例如,
arr.push(Ext.getCmp('id').getValue());
像这样我们可以动态地在现有数组中添加值..