Jquery - 将Excel数据复制到输入字段中

时间:2016-02-05 19:05:10

标签: javascript jquery excel

我正在尝试将excel列复制到一个输入字段中,然后将每个excel单元格拆分为自己的输入字段。我有点工作,但没有excel数据。

例如,如果我复制并粘贴' 1 2 3 4 5'在一个输入字段中,它将获取每个值并将其粘贴到单独的输入字段中。

实施例: !http://imgur.com/1UzT1k1

如果我复制并粘贴下面示例中的数据,则不起作用:

http://imgur.com/fwVAouA

查看jsfiddle的示例 https://jsfiddle.net/jdarville/rfsn1sz4/

var selects = [].slice.call(document.querySelectorAll('select')); // [].slice.call turns NodeList into an array
var total = selects.reduce(function (previousValue, select) {
   previousValue += select.options[select.selectedIndex].value || 0;
}, 0);
// ... then query for textbox, set the value of it to 'total'

将数据拆分为' '如果我复制并粘贴excel数据,它在信息之间有一个空格,但它不起作用。

0 个答案:

没有答案