91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

MVC 通過ajaxSubmit上傳圖片并顯示

發布時間:2020-06-26 03:00:15 來源:網絡 閱讀:1053 作者:8218729 欄目:編程語言
js代碼
function submitform() {
        $("#form_upload").ajaxSubmit({
            success: showResponse
        });
    }

    function showResponse(responseText) {
        if (responseText != null) {
            alert('上傳成功!');
        } else {
            alert('操作失敗!');
        }
    }

    $(function () {
        $("#upImg").on("change", function () {
            var file = this.files[0];

            if (this.files && file) {
                var reader = new FileReader();
                reader.onload = function (e) {
                    $('#result').attr('src', e.target.result);
                }
                reader.readAsDataURL(file);
            }
        });
    })
前臺代碼
<table>
                <tr>
                    <td >生產(經營)許可證證件照片</td>
                    <td>
                        <form id="form_upload"  action="Upload" target="iframeInfo" method="post" enctype="multipart/form-data">
                            <input name="upImg" id="upImg" type="file" />
                            <input type="submit" value="上傳" />
                        </form>                        
                    </td>
                </tr>
                <tr>
                    <td>
                        <img id="result"  src="" alt="">
                    </td>
                    <td>
                        <iframe name="iframeInfo" id="iframeInfo" ></iframe>
                    </td>
                </tr>
            </table>
            
 (這里添加iframe,因為后臺返回時會跳轉,把form放入iframe里提交就不會跳轉頁面)
后臺代碼 
[HttpPost]        
        public ActionResult Upload(HttpPostedFileBase upImg)
        {
            if (upImg == null)
            {
                return Content("文件上傳錯誤,請重新選擇文件!");

            }
            string fileName = System.IO.Path.GetFileName(upImg.FileName);
            string filePhysicalPath = Server.MapPath("~/credp_w_picpaths/" + fileName);
            try
            {
                upImg.SaveAs(filePhysicalPath);
                Session["ImgPath"] = filePhysicalPath;
                return Content("上傳成功");
            }
            catch
            {
                return Content("上傳異常 !");

            }
        }


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

马山县| 丰宁| 吉林省| 渝北区| 枣强县| 望都县| 广东省| 修文县| 大英县| 晋中市| 丰台区| 天等县| 宁晋县| 梧州市| 区。| 拜泉县| 惠水县| 桓仁| 五常市| 枝江市| 兴文县| 沾益县| 白河县| 福泉市| 泸水县| 于田县| 措勤县| 疏勒县| 弥勒县| 咸宁市| 梨树县| 松桃| 淳化县| 滨州市| 庆元县| 安达市| 元江| 咸丰县| 满洲里市| 瑞丽市| 屯留县|