这是 Webkit 浏览器的本机部分,您无法删除它。您应该考虑一种骇人听闻的解决方案,例如 覆盖 或 隐藏 文件输入。
一个 哈克 的解决方案:
input[type='file'] { opacity:0 }<div> <input type='file'/> <span id='val'></span> <span id='button'>Select File</span></div>$('#button').click(function(){ $("input[type='file']").trigger('click');})$("input[type='file']").change(function(){ $('#val').text(this.value.replace(/C:\fakepath\/i, ''))})
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)