码迷,mamicode.com
首页 > Web开发 > 详细

Jquery学习---一键上传

时间:2018-07-23 23:37:49      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:false   catch   success   let   function   href   ref   regexp   input   

一键上传

jar包下载

jquery代码

    $(function () {  
                $(".uploadfile").upload({  
                    action: ‘CourseXMLFileUploadHander.ashx‘,  
                    name: ‘xml‘,  
                    params: {  
                        ‘type‘: ‘uploadCourseXMLFile‘,  
                        ‘rand‘: Math.random()  
                    },  
                    onSelect: function (self, element) {  
                        this.autoSubmit = false;  
                        var re = new RegExp("(xml){1}quot;, "i");  
      
                        if (!re.test(this.filename())) {  
                            alert("Only xml file can be uploaded");  
                        }  
                        else {  
                            this.submit();  
                        }  
                    },  
                    onSubmit: function (self, element) {  
                        $(‘.uploadfile‘).hide();  
                        $(‘#ajax_update‘).parent().show();  
                        //alert(‘Uploading file...‘);  
                    },  
                    onComplete: function (data, self, element) {  
                        $(‘#ajax_update‘).parent().hide();  
                        $(‘.uploadfile‘).show();  
                        self.resetInput();  
                        try {  
                            var ret = data;  
                            if (ret.indexOf("exception") >= 0) {  
                                alert(‘Upload file exception: ‘ + eval(data)[0].exception);  
                            }  
                            else {  
                                showSuccess(‘File is successfully Load.‘);  
      
                                uploadSuccess(ret);  
      
                            }  
                        } catch (err) {  
                            alert(data);  
                        }  
                    }  
                });  
            });  

  

Jquery学习---一键上传

标签:false   catch   success   let   function   href   ref   regexp   input   

原文地址:https://www.cnblogs.com/ftl1012/p/9357405.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!