今天在做项目的时候遇到上传文本框的问题 <input type=file size= name=photoupload /> 在firefox中该控件产生的文本框是默认不可编辑的但是在IE下该文本框可编辑 根据用户需要此文本框应为不可编辑 但是直接将其设置为readonly或者disabled后对应的浏览按钮也无法使用了所以此法不通 在网上搜索了一些资料主要有以下几种方法 变通处理 <input type=file id=a > <input id=a type=text readonly> <input type=button value=浏览 onclick=aclick(); avalue= avalue> 增加如下属性 contenteditable=false 实例代码 <input type=file id=ptlFile contenteditable=false/> 对比一下第二种简单方便问题解决 |