To upload a file in layui, cancel the layui-upload-file format and hide its input box.

clipboard.png

clipboard.png
this input box is automatically generated

ask urgently!

Php
Jul.25,2021

set input to transparent and move it to the icon


owner, this input is generated by layui to actually transmit, the easiest and most rude way is to hide it.
$(".layui-upload-file"). Hide ();


use css style to remove, code is presented

.layui-upload-file {

    display: none !important;
    opacity: .01;
    filter: Alpha(opacity=1);
}
Menu