admin管理员组文章数量:1430604
Is there a way to test if a given browser supports the multiple
attribute on file upload elements? Either a server-side or client-side implementation is sufficient.
I do realize I can test the user-agent against a list of known browsers that support the feature, but that seems like a rather frail implementation (ie. if IE 10 supports the feature when it finally launches, the I'll have to go edit back my code). I'd prefer to test support of the feature directly.
Thoughts?
Is there a way to test if a given browser supports the multiple
attribute on file upload elements? Either a server-side or client-side implementation is sufficient.
I do realize I can test the user-agent against a list of known browsers that support the feature, but that seems like a rather frail implementation (ie. if IE 10 supports the feature when it finally launches, the I'll have to go edit back my code). I'd prefer to test support of the feature directly.
Thoughts?
Share Improve this question asked Oct 21, 2011 at 16:18 David ChouinardDavid Chouinard 6,8969 gold badges46 silver badges64 bronze badges 4- have you thought about using uploadify instead? – stivlo Commented Oct 21, 2011 at 16:24
- @stivlo I have, and I'm using this jQuery plugin instead. I'm finding it's much better, why are you remending Uploadify? – David Chouinard Commented Oct 21, 2011 at 17:01
- Because it's the one I knew, I didn't came across jQuery File yet. Taking a look, thanks. – stivlo Commented Oct 21, 2011 at 17:05
- 1 Possible duplicate of how would I detect if "multiple" attribute is supported for file input elements? – davidwebster48 Commented Jan 30, 2016 at 10:45
3 Answers
Reset to default 3I'd remend using "multiple" in document.createElement("input")
for feature detection.
Since this functionality is part of the HTML5 specification and is only just emerging in current implementations, you may not yet have a definitive and reliable way to do this. Want to know for sure? Then test it on as many browsers as possible. However, with that said, the code segment found at:
https://developer.mozilla/en/DOM/Input.multiple
does show that you should be able to determine this based on a simple test for the existence of the "multiple" attribute like is monly used in many other elements.
There is no reliable way to do this at present time, as has been evidenced by Viljami Salminen's tests of file upload support on mobile browsers (i.e. support for input type=file
- let alone for multiple file upload). His findings show that many browsers/devices falsely report support.
What I mean by "no reliable way to do this at present time" is that we don't have a list of false positives for this particular feature, the HTMLInputElement.multiple
property. Obviously the list would include the entire regexp of false positives for input type=file
, but would likely also include additional false positives just for this particular feature - hence the ability to detect this capability awaits a systematic test of browsers.
Temporarily, you could use the following test, based entirely on Salminen's code, with the addition of one line (el.multiple = true;
), and substituting xxx
for the regexp referenced above.
var isMultipleFileInputSupported = (function () {
// Handle devices which falsely report support
if (navigator.userAgent.match(/xxx/)) {
return false;
}
var el = document.createElement('input');
el.type = 'file';
el.multiple = true;
return !el.disabled;
})();
Usage example:
if (isMultipleFileInputSupported) {
console.log('multiple file input is supported');
} else {
console.log('multiple file input is NOT supported');
}
本文标签: javascriptTesting if a browser supports multiple file uploadsStack Overflow
版权声明:本文标题:javascript - Testing if a browser supports multiple file uploads? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745540213a2662458.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论