摘要:
/** * 检查浏览器是否支持某种类型的输入控件 * @param {Object} type */function inputSupportsType(type){ if (!document.createElement) { return false; } var input = document.createElement("input"); input.setAttribute("type", type); if (input.type == "text" && type != "text" 阅读全文