After searching online for a day, everyone said that Uploadify’s only shortcoming is that it does not support Chinese buttons. Before that, I took a look at Uploadify’s API and found a few parameters that were not mentioned by everyone. This is the solution. The key to this issue. (In the future, we will resolutely develop the habit of checking the API when nothing happens)
Uploadify has a parameter called buttonText. No matter how you change it, it does not support Chinese because the plug-in uses a transcoding method in js to transcode the value of this parameter. Yes, the decoding place is in the swf file, and the code cannot be seen, so this method cannot be used.
Another parameter, rarely mentioned on the Internet, is buttonImg (button image). At this time, you can completely replace the black flash browsing button that comes with the plug-in with an image, as long as your own image is in Chinese , doesn’t this solve the Chinese button problem? If you only add this one, you will find that there is a white area under your button image, which is actually left by the flash. The white area represents the available range of the mouse. This range can be adjusted with width and height. There is also a parameter wmode. Its default value is opaque. Just change it to transparent, which means to make the white area transparent. Use the method just mentioned again and set the key click range to be as large as your picture and it will be completely OK.
I won’t go into the usage of Uploadify. There are many articles on the Internet. The usage is the same as other jquery plug-ins, which is just the placement path of several files.
Attached below is an introduction to some parameters of Uploadify. If you want to see all of them, go to its API file, which is usually included in the downloaded package.
uploader: The relative path of the uploadify.swf file. The swf file is a button with the text BROWSE. When clicked, an open file dialog box pops up. Default value: uploadify.swf.
script: Relative path to the spooler. Default value: uploadify.php
checkScript: The relative path of the background processing program used to determine whether the uploaded selected file exists on the server
fileDataName: Set a name, and the uploaded file is retrieved based on this name in the server processing program data. The default is Filedata
method: submission method Post or Get. The default is Post
scriptAccess: the access mode of the flash script file. If it is set to always for local testing, the default value is: sameDomain
folder: the directory where the uploaded file is stored. .
queueID: The ID of the file queue, which is consistent with the ID of the div that stores the file queue.
queueSizeLimit: When multiple files are allowed to be generated, set the number of selected files. Default value: 999.
multi: Multiple files can be uploaded when set to true.
auto: Set to true and upload directly after selecting the file. If set to false, you need to click the upload button to upload.
fileDesc: This attribute value must be set with the fileExt attribute to be effective. It is used to set the prompt text in the file selection dialog box. For example, if fileDesc is set to "Please select rar docpdf file", the effect of opening the file selection box is as follows:
fileExt: Set the type of file that can be selected, such as: '*.doc;*.pdf;*.rar'.
sizeLimit: The size limit of uploaded files.
simUploadLimit: The number of simultaneous uploads allowed. Default value: 1.
buttonText: Text of the browse button, default value: BROWSE.
buttonImg: The path to browse the image of the button.
hideButton: Set to true to hide the image of the browse button.
rollover: The values are true and false. When set to true, there will be a reversal effect when the mouse moves over the browse button.
width: Set the width of the browse button, default value: 110.
height: Set the height of the browse button, default value: 30.
wmode: Setting this item to transparent can make the flash background file of the browse button transparent, and the flash file will be placed at the top level of the page. Default value: opaque.
cancelImg: Close button icon on each file after selecting the file into the file queue
Uploadify also comes with many parameters, useful methods and callback functions, all in the API. Although it is in English, it is easy to understand, so I won’t go into it here.
The following is the code I used, you can refer to it:
要注意的是,我的script属性值是一个请求路径,我发现在我设置了同时上传多个文件后(比如3),并不是每请求一次去上传3个文件,而仍然是执行3次请求,请求一次上传一个文件。这也没办法,uplodify有那么多回调函数,要是一次处理多个,那回调函数的参数就不知道拿哪个了,因为这些参数都不是数组。
也就是说,无论你设置同时上传几个文件,它都会一个一个去请求并上传,只是表面上感觉好像有多个线程同时在处理上传请求一样,只是表象而已。而且如果你把simUploadLimit设置过大就会经常出错,我设置成5的时候经常会有一两个文件上传失败。

实现方法:1、用“$("img").delay(毫秒数).fadeOut()”语句,delay()设置延迟秒数;2、用“setTimeout(function(){ $("img").hide(); },毫秒值);”语句,通过定时器来延迟。

修改方法:1、用css()设置新样式,语法“$(元素).css("min-height","新值")”;2、用attr(),通过设置style属性来添加新样式,语法“$(元素).attr("style","min-height:新值")”。

区别:1、axios是一个异步请求框架,用于封装底层的XMLHttpRequest,而jquery是一个JavaScript库,只是顺便封装了dom操作;2、axios是基于承诺对象的,可以用承诺对象中的方法,而jquery不基于承诺对象。

增加元素的方法:1、用append(),语法“$("body").append(新元素)”,可向body内部的末尾处增加元素;2、用prepend(),语法“$("body").prepend(新元素)”,可向body内部的开始处增加元素。

在jquery中,apply()方法用于改变this指向,使用另一个对象替换当前对象,是应用某一对象的一个方法,语法为“apply(thisobj,[argarray])”;参数argarray表示的是以数组的形式进行传递。

删除方法:1、用empty(),语法“$("div").empty();”,可删除所有子节点和内容;2、用children()和remove(),语法“$("div").children().remove();”,只删除子元素,不删除内容。

on()方法有4个参数:1、第一个参数不可省略,规定要从被选元素添加的一个或多个事件或命名空间;2、第二个参数可省略,规定元素的事件处理程序;3、第三个参数可省略,规定传递到函数的额外数据;4、第四个参数可省略,规定当事件发生时运行的函数。

去掉方法:1、用“$(selector).removeAttr("readonly")”语句删除readonly属性;2、用“$(selector).attr("readonly",false)”将readonly属性的值设置为false。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

WebStorm Mac version
Useful JavaScript development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver Mac version
Visual web development tools

Notepad++7.3.1
Easy-to-use and free code editor
