jQuery外掛程式AjaxFileUpload實現ajax檔案上傳,jqueryajax上傳外掛程式

來源:互聯網
上載者:User

jQuery外掛程式AjaxFileUpload實現ajax檔案上傳,jqueryajax上傳外掛程式

本文執行個體為大家分享了AjaxFileUpload實現檔案上傳的具體代碼,供大家參考,具體內容如下

jQuery外掛程式AjaxFileUpload用來實現ajax檔案上傳,該外掛程式使用非常簡單,接下來寫個demo示範怎麼用AjaxFileUpload外掛程式實現檔案上傳。

1、引入AjaxFileUpload外掛程式相關的js

複製代碼 代碼如下:<script type="text/javascript" src="<%=basePath%>resources/js/jquery-1.2.1.js"></script>
<script type="text/javascript" src="<%=basePath%>resources/js/ajaxfileupload.js"></script>
備忘:測試發現,ajaxfileupload對jQuery版本是有要求的,在使用中ajaxfileupload和jQuery對應的js版本要一致,不然會導致異常發生,可以從ajaxfileupload官網下載,避免版本衝突。

2、實現上傳功能代碼

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%><%@ include file="/base.jsp" %><%String path = request.getContextPath();String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html> <head>  <base href="<%=basePath%>">    <title>ajax檔案上傳</title>    <meta http-equiv="pragma" content="no-cache">  <meta http-equiv="cache-control" content="no-cache">  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">   <meta http-equiv="expires" content="0">    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">  <meta http-equiv="description" content="This is my page">  <link rel="stylesheet" type="text/css" href="validate/ajaxfileupload.css" />  <script type="text/javascript" src="validate/jquery-1.6.2.min.js"></script>  <script type="text/javascript" src="validate/ajaxfileupload.js" ></script>  <script type="text/javascript">  $(function(){    //上傳圖片    $("#btnUpload").click(function() {        alert(ajaxFileUpload());    });  });  function ajaxFileUpload() {    // 開始上傳檔案時顯示一個圖片    $("#wait_loading").ajaxStart(function() {      $(this).show();    // 檔案上傳完成將圖片隱藏起來    }).ajaxComplete(function() {      $(this).hide();    });    var elementIds=["flag"]; //flag為id、name屬性名稱    $.ajaxFileUpload({      url: 'uploadAjax.htm',       type: 'post',      secureuri: false, //一般設定為false      fileElementId: 'file', // 上傳檔案的id、name屬性名稱      dataType: 'text', //傳回值類型,一般設定為json、application/json      elementIds: elementIds, //傳遞參數到伺服器      success: function(data, status){         alert(data);      },      error: function(data, status, e){         alert(e);      }    });    //return false;  }  </script> </head>  <body>  <div id="wait_loading" style="padding: 50px 0 0 0;display:none;">    <div style="width: 103px;margin: 0 auto;"><img src="<%=path %>/images/loading.gif"/></div>    <br></br>    <div style="width: 103px;margin: 0 auto;"><span>請稍等...</span></div>    <br></br>  </div>  <input type="file" id="file" name="file"><br/>  <input type="hidden" id="flag" name="flag" value="ajax檔案上傳"/>  <input type="button" id="btnUpload" value="上傳圖片" /> </body></html>

以上就是本文的全部內容,希望對大家學習jquery程式設計有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.