这是jsfiddle代码的链接handsontable
。按下按钮时,数据集进入控制台。我的网页上有两段不同的 JavaScript 代码。其中之一包含handsontable
. 如何将数据传输(转储)到属于不同脚本(而不是控制台)的数组?有没有办法创建一个static
所有脚本都可以看到的数组(比如在 Java 中)?这是方案:
<div id="mytable" class="handsontable"> </div>
<script>
// Here the user inserts the data to the handsontable. As she presses the button, data should go to the second piece of script.
</script>
...
<div id="target" class=""> </div>
<script>
//the target array is here, and it needs to be filled with the data from the above piece of script as the button is pressed.
</script>