Home  >  Article  >  Web Front-end  >  jquery.fileEveryWhere.js A cross-browser file display plug-in_jquery

jquery.fileEveryWhere.js A cross-browser file display plug-in_jquery

WBOY
WBOYOriginal
2016-05-16 18:00:241277browse

Let’s first take a look at the different expressions of input type="file" in the three browsers of chrome, ie, and firefox.

Chrome is like a button label combination, which looks the most different.

ff and ie are a combination of text buttons. In terms of appearance, firefox is more standard. In fact, firefox has two potential problems:

1. Firefox currently does not support the width definition of input of type="file" (but FF supports the size attribute. You can set a value for size to control the size of the upload box. As for how big this size is, See the article Blossoms - What is the size of input type="file" under firefox ).

2. When submitting the file form in Firefox, it only submits the file name but not the path, while IE submits the path file name. Chrome can also submit the path file name, but only displays the file name. When submitting the file form in Firefox, only the file name is submitted but not the path (Unfortunately, there is no solution for the time being)

To make the file display uniformly in various browsers, pure style can no longer be controlled, and only js scripts can be used. There are 3 basic steps:

1. Use text boxes and buttons to simulate an input type="file".

2. Make input="file" transparent, and use positioning to completely cover the text box and button.

3. When input type="file" is onchange, use js to set the value of the text box to the value of input type="file".

After understanding the steps, the entire plug-in is easy to write. The code is as follows:

Copy the code The code is as follows:

/*
* file everywhere - browser universal file upload
* copyright->flowerszhong
* flowerszhong@gmail.com
*/
(function($ ) {
$.fn.fileEveryWhere = function(options) {
var defaults = {
WrapWidth: 300,
WrapHeight: 30,
ButtonWidth: 60,
ButtonHeight: 28 ,
ButtonText: "Browse",
TextHeight: 28,
TextWidth: 240
};
var options = $.extend(defaults, options);
var browser_ver = $ .browser.version.substr(0, 1);
var displayMode = ($.browser.msie && browser_ver <= "7") ? "inline" : "inline-block";
return this. each(function() {
//Create a wrapper, set to relative positioning
var wrapper = $("
")
.css({
" width": options.WrapWidth "px",
"height": options.WrapHeight "px",
"display": displayMode,
"zoom": "1",
"position" : "relative",
"overflow": "hidden",
"z-index":"1"
});
//Create a text input box to store the name of the uploaded file
var text = $('')
.css({
"width": options.TextWidth "px",
"heigth": options.TextHeight "px"
});
//Create a browse button
var button = $(' ')
.val(options.ButtonText);
$(this).wrap(wrapper).parent().append(text, button);
$(this).css({
"position": "absolute",
"top": "0",
"left": "0",
"z-index": "2",
"height" : options.WrapHeight "px",
"width": options.WrapWidth "px",
"cursor": "pointer",
"opacity": "0.0",
"outline" :"0",
"filter": "alpha(opacity:0)"
});
if ($.browser.mozilla) { $(this).attr("size", 1 (options.WrapWidth - 85) / 6.5) }
$(this).bind("change", function() {
text.val($(this).val());
} );
});
};
})(jQuery);

Using is very simple:

$("input:file"). fileEveryWhere({parameter});

This way input="file" can be displayed uniformly and is easy to beautify.
Download the plug-in: jquery.fileEveryWhere.rar
From: http://www.cnblogs.com/flowerszhong/
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