The problem of jquery.form.js denying access in IE and the input upload button must be actively clicked

The problem of jquery.form.js denying access in IE and the input upload button must be actively clicked

Let's take a look at the code first

<form id="uploadFileForm2" name="uploadFileForm2" enctype="multipart/form-data" method="post">
    <div class="upload-wapper mt20">
        <input type="file" name="excelfile" id="dataFile" class="dataFile" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" />
        <a href="javascript:;" id="uploadFile" class="upload-file">Upload file</a>
        <div id="J_progress_label"></div>
    </div>
</form>

// Save import $("#uploadFile").click(function(){
    $("#dataFile").click()
})

When uploading using jquery.form.js in IE, access is suddenly denied. The simulated click event of jq is used. I found that in IE, unless you click the browse button of the file control, you do not have permission to upload the file. Then you need to submit it in the form of a form, and the enctype attribute must be included. In other words, you cannot use js to control the value of the file control to upload files.

If you think the file is ugly, you can use the CSS style to hide the file, then set the button to transparent and cover it. You can also use a div to wrap the <input type=”file”> tag to solve the problem. At the same time, pay attention to setting the CSS style. Note that the button position of the <input type=”file”> tag is different in Google and IE8.

Summarize

This is the end of this article about the jquery.form.js access denied issue in IE, and the input upload button must be clicked actively. For more information about IE jquery.form.js access denied issue, please search 123WORDPRESS.COM's previous articles or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

<<:  The difference between html form submission action and url jump to actiond

>>:  Detailed explanation of application scenarios of filters in Vue

Recommend

Why MySQL does not recommend deleting data

Table of contents Preface InnoDB storage architec...

Javascript common higher-order functions details

Table of contents 1. Common higher-order function...

How to load the camera in HTML

Effect diagram: Overall effect: Video loading: Ph...

Introduction to Docker Architecture

Docker includes three basic concepts: Image: A Do...

Detailed tutorial on installing Protobuf 3 on Ubuntu

When to install If you use the protoc command and...

Problems and solutions when installing MySQL8.0.13 on Win10 system

Operating system: Window10 MySQL version: 8.0.13-...

Detailed installation and configuration tutorial of PostgreSQL 11 under CentOS7

1. Official website address The official website ...

27 Linux document editing commands worth collecting

Linux col command The Linux col command is used t...

How to modify the IP restriction conditions of MySQL account

Preface Recently, I encountered a requirement at ...

Hadoop 3.1.1 Fully Distributed Installation Guide under CentOS 6.8 (Recommended)

Foregoing: This document is based on the assumpti...

Example analysis of the use of GROUP_CONCAT in MySQL

This article uses an example to describe how to u...