兼容性想還不錯(cuò):FF,CH,IE,獵豹,都是可以實(shí)現(xiàn)的。如果看到回顯。當(dāng)然就是成功了。
經(jīng)歷了好幾天的不停的鉆牛角尖,終于將這個(gè)二貨弄出來了。真是煞費(fèi)苦心啊。但是做出來的瞬間還是蠻開心的。
第一步:我們需要加載幾個(gè)JS庫。
jquery庫。
jquery.form.js庫。
下載這兩個(gè)庫,并引用到頁面中。
以下為頁面中 JS 代碼:
代碼如下:
function upload() {
var options = {
type: "POST", //當(dāng)然這個(gè)是傳送方式
url: '../Include/Files.ashx', //一般處理程序的路徑
success: function (msg) { //返回的參數(shù)
$("#server_img").attr("src", msg); //回顯圖片。
}
};
// 將options傳給ajaxForm
$('#aspnetForm').ajaxSubmit(options);
}
第二步:一般處理程序內(nèi)的代碼
代碼如下:
public void ProcessRequest(HttpContext context)
{
HttpFileCollection files = context.Request.Files; // From中獲取文件對象
if (files.Count > 0)
{
string path = ""; //路徑字符串
Random rnd = new Random();
for (int i = 0; i < files.Count; i++)
{
HttpPostedFile file = files[i]; //得到文件對象
if (file.ContentLength > 0)
{
string fileName = file.FileName;
string extension = Path.GetExtension(fileName);
int num = rnd.Next(5000, 10000); //文件名稱
path = "../../UserFiles/temp/" + num.ToString() + extension;
file.SaveAs(System.Web.HttpContext.Current.Server.MapPath(path)); //保存文件。
}
}
context.Response.Write(path); //返回文件存儲后的路徑,用于回顯。
}
}
第三步:html或者aspx中的代碼。
以下兩句代碼隨便插入html或者aspx中的任意位置。想來都是可以實(shí)現(xiàn)的。
代碼如下:
<img id="server_img" width="360px" style="border: 1px solid #ccc; padding: 2px;" title="" alt="" /> //用于回顯圖片
<asp:FileUpload ID="Up_load" runat="server" onchange="upload()" ontextchange="upload()"/> //上傳圖片,自動(dòng)的,兩個(gè)事件是為了保證所有瀏覽器都兼容。
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com