search
HomeWeb Front-endJS TutorialExample of jQuery plug-in that limits the size and format of uploaded files_jquery

The example in this article describes the jQuery plug-in that limits the size and format of uploaded files. Share it with everyone for your reference. The specific analysis is as follows:

When uploading files on the client, it is usually necessary to limit the size and format of the file. The most common method is to use a certain plug-in. Some mature plug-ins do have beautiful interfaces and powerful functions, but the only drawback is: sometimes you encounter Browser compatibility issues. In this article, we will write an "original" jQuery plug-in that can limit the size and format of uploaded files.

First, write a plug-in named checkFileTypeAndSize.js. Limit the file format by judging whether the suffix name of the current file is included in the suffix name array allowed by the preset; by judging whether the size of the current file under IE and other browsers is greater than the maximum file size allowed by the preset, to limit the file size; and provide callback functions for format errors, exceeding the limit size, and meeting conditions.

Copy code The code is as follows:
(function ($) {
$.fn.checkFileTypeAndSize = function (options) {
//Default settings
      var defaults = {
              allowedExtensions: [],
                 maxSize: 1024, //The unit is KB, the default maximum file size is 1MB=1024KB
Success: function () { },
              extensionerror: function () { },
sizeerror: function () { }
        };
//Merge settings
options = $.extend(defaults, options);
//Traverse elements
          return this.each(function () {
                 $(this).on('change', function () {
//Get file path
              var filePath = $(this).val();
//File path in lower case letters
              var fileLowerPath = filePath.toLowerCase();
//Get the suffix name of the file
            var extension = fileLowerPath.substring(fileLowerPath.lastIndexOf('.') 1);
//Determine whether the suffix name is included in the preset and allowed suffix name array
If ($.inArray(extension, options.allowedExtensions) == -1) {
options.extensionerror();
                            $(this).focus();
                     } else {
                     try {
                        var size = 0;
If ($.browser.msie) {//ie old version of browser
                                                           var fileMgr = new ActiveXObject("Scripting.FileSystemObject");
                                                                                     var fileObj = fileMgr.getFile(filePath);
size = fileObj.size; //byte
size = size / 1024;//kb
//size = size / 1024;//mb
                                  } else {//Other browsers
size = $(this)[0].files[0].size;//byte
size = size / 1024;//kb
//size = size / 1024;//mb
                                                                                                       } If (size > options.maxSize) {
options.sizeerror();
                            } else {
options.success();
                                                                                                       }                                  } catch (e) {
alert("Error: "e);
                 }
                }
            });
        });
};
})(jQuery);

Calling on the client becomes very simple.


@section scripts
{


}

I hope this article will be helpful to everyone’s jQuery programming.
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
123云盘怎么上传文件123云盘怎么上传文件Feb 24, 2024 pm 05:30 PM

123云盘怎么上传文件?123云盘中是可以上传文件来储存,但是多数的小伙伴不知道123云盘如何上传文件,接下来就是小编为玩家带来的123云盘上传文件方法图文教程,感兴趣的用户快来一起看看吧!123云盘怎么上传文件1、首先打开123云盘进入到主页面,注册或者登陆账号;2、然后进入到如下图所示的页面,点击箭头指引的【上传】按钮;3、接着下方会展开功能栏窗口,【选择文件】功能点击;4、最后选择需要上传的文件,耐心等待上传完成即可。

如何解除视频号评论限制?视频号评论限制多少字数?如何解除视频号评论限制?视频号评论限制多少字数?Mar 22, 2024 pm 02:11 PM

随着视频号在社交媒体上的普及,越来越多的人开始利用视频号分享他们的日常生活、见解和故事。然而,一些用户可能会遇到评论被限制的情况,这会让他们感到困惑和不满。一、如何解除视频号评论限制?要解除视频号评论限制,首先必须确保账号已正常注册并完成实名认证。视频号对评论设有要求,只有完成实名认证的账号才能解除评论限制。如果账号存在异常情况,需要先解决这些问题才能解除评论限制。2.遵守视频号的社区规范。视频号对评论内容有一定的规范要求,如果评论涉及违规内容,会被限制发言。要解除评论限制,需要遵守视频号的社区

如何设置CentOS系统以限制用户对系统日志的修改如何设置CentOS系统以限制用户对系统日志的修改Jul 05, 2023 pm 03:43 PM

如何设置CentOS系统以限制用户对系统日志的修改在CentOS系统中,系统日志是非常重要的信息源,它记录了系统的运行状态、错误信息、警告等。为了保护系统的稳定性和安全性,我们应该限制用户对系统日志的修改。本文将介绍如何设置CentOS系统,实现对系统日志的修改权限限制。一、创建用户组和用户首先,我们需要创建一个专门负责管理系统日志的用户组,以及一个用于管理

JavaScript 如何实现图片的拖动缩放同时限制在容器内?JavaScript 如何实现图片的拖动缩放同时限制在容器内?Oct 20, 2023 pm 04:19 PM

JavaScript如何实现图片的拖动缩放同时限制在容器内?在Web开发中,经常会遇到需要对图片进行拖动和缩放的需求。这篇文章将介绍如何使用JavaScript实现图片的拖动缩放,并限制在容器内的操作。一、拖动图片要实现图片的拖动,我们可以使用鼠标事件来跟踪鼠标位置,并将图片的位置随之移动。下面是一个示例代码://获取图片元素varimage

坚果云如何上传文件坚果云如何上传文件Feb 27, 2024 pm 03:58 PM

坚果云是一款高效的文件管理工具,致力于为用户提供智能的文件保存和同步服务。它具备强大的数据同步和备份功能,确保用户的数据安全无虞。坚果云的一系列功能都是为了满足用户在不同场景下的需求,提供卓越的使用体验。那么究竟该如何在坚果云app中上传文件呢,这篇教程攻略就将为大家带来详细的步骤介绍,希望能帮助到各位有需要的小伙伴们。坚果云怎么上传文件?1、在我的文件页面,点击我的坚果云打开。2、在打开的页面,点击右下角的加号图标。3、在底部弹出的选项中,点击从SD卡上传。4、在打开的手机存储里面,选择文件,

wps会员最大可上传多大文档超过限制怎么办wps会员最大可上传多大文档超过限制怎么办Mar 20, 2024 pm 06:40 PM

wps是一款集综合性操作的办公软件,现在可以下载wps进行使用,但是要想拥有更多的使用功能是需要注册会员的。有的人会疑惑wps会员最大可上传多大文档?如果是wps会员用户,上传文件时每次最高可以超大1G,而所有的文件加起来可以达到365G,不同的终端可能会存在部分差异,但总体显示是基本相似的。如果超过限制无法上传怎么办?接下来我们就进行讲解。1、上传文件,例如云文档,空间是存在一定大小的,超过了就无法再上传。2、点击会员标识,按照自己的需要购买会员,扩充空间。3、偶尔会出现优惠券,不要忘了使用。

内联模板函数的应用与限制内联模板函数的应用与限制Apr 28, 2024 pm 02:33 PM

内联模板函数将代码直接插入调用点,无需生成单独的函数对象,应用包括代码优化、性能提升、常量求值和代码简化。但要注意其局限性,例如编译时间延长、代码大小增加、可调试性降低以及跨编译单元的限制。

C++ 函数重载的限制和注意事项有哪些?C++ 函数重载的限制和注意事项有哪些?Apr 13, 2024 pm 01:09 PM

函数重载的限制包括:参数类型和顺序必须不同(相同参数个数时),不能使用默认参数区分重载。此外,模板函数和非模板函数不能重载,不同模板规范的模板函数可以重载。值得注意的是,过度使用函数重载会影响可读性和调试,编译器从最具体到最不具体的函数进行搜索以解决冲突。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor