javascript – 我如何检测文件输入元素是否支持“multiple”属性?

前端之家收集整理的这篇文章主要介绍了javascript – 我如何检测文件输入元素是否支持“multiple”属性?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Internet Explorer不支持< input type =“file”/>的多个属性.然而,它不仅缺乏这种支持的IE ……某些移动浏览器也不支持属性.因此,简单地检测浏览器是IE不是理想的解决方案.

那么我如何检测< input type =“file”/>是否支持multiple属性?用JavaScript

UPDATE

似乎Modernizr支持新的HTML5输入元素属性

http://modernizr.com/docs/#input

然而,接受的解决方案似乎有效,因为我已经在使用Modernizr,我的解决方案如下:

/**
 * Determines if the given attribute is supported for <input /> elements.
 * 
 * @param attribute - the attribute to test for (ex. "multiple")
 */
function isInputAttributeSupported(attribute) {
    return (Modernizr.input[attribute]) ? true : false;
};

解决方法

var inp = document.createElement("input");
inp.setAttribute("multiple","true");
var supportsMultiple = inp.multiple===true;
原文链接:https://www.f2er.com/js/159508.html

猜你在找的JavaScript相关文章