本文介绍了如何从Java脚本中获取上载文件中的数据?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

我想上传像.txt这样的文件,我希望从中获取数据并存储在数组中并使用java脚本执行一些logoc

我的代码片段是

 function m1(file,target){
var file = document.getElementById(fup1)。value;

var input = file.trim()。replace(';',',')。split(',');
var distinctArray = input.filter(function(val){
return input.indexOf(val)== -1;
});
target.value = distinctArray.join(',');
}





我的控件是

<表> 
< tr>
< td> < asp:FileUpload ID = fup1 runat = server /> < / td >
< td>< asp:TextBox ID = txt1 runat = server TextMode = MultiLine> < / asp:TextBox > < / td >
< td>< input type = button id = btn1 value = 提交 onclick = ' m1(<%= fup1.ClientID%>,<%= txt1.ClientID%>);返回false;' /> < / td >
< / tr >
< / table > ;



这里我没有得到任何东西



请帮帮我。 ..谢谢提前

解决方案

I want to upload a file like .txt and i want to get the data from it and store in array and do some logoc in that by using java script
my snippet is

function m1(file,target) {
      var file = document.getElementById("fup1").value;

      var input= file.trim().replace(';', ',').split(',');
       var distinctArray = input.filter(function (val) {
           return input.indexOf(val) == -1;
           });
      target.value = distinctArray.join(',');
  }



and my controls are

<table>
   <tr>
   <td> <asp:FileUpload ID="fup1" runat="server" /></td>
   <td><asp:TextBox ID="txt1" runat="server" TextMode="MultiLine"></asp:TextBox></td>
   <td><input type="button" id="btn1" value="Submit" onclick='m1(<%=fup1.ClientID%>,<%=txt1.ClientID%>);return false;' /></td>
   </tr>
   </table>


Here i dont get any thing

please help me...thanks in advance

解决方案


这篇关于如何从Java脚本中获取上载文件中的数据?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-06 16:17