Guest User

Untitled

a guest
Mar 21st, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>サンプル</title>
  4.  
  5. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
  6. </head>
  7. <body>
  8. <script type="text/javascript">
  9.  
  10. function CSVTEST() {
  11. var elem = document.getElementById("csvfile").value;
  12. alert(elem);
  13.  
  14. $.get(elem, function(data){
  15. alert(data);
  16. });
  17. };
  18. </script>
  19.  
  20. <input id="csvfile" type="file">
  21. <input type="submit" value="OK" onclick="CSVTEST()">
  22.  
  23. </body>
  24. </html>
Add Comment
Please, Sign In to add comment