电脑故障

位置:IT落伍者 >> 电脑故障 >> 浏览文章

使input type=file 不可编辑


发布日期:2023/8/6
 

今天在做项目的时候遇到上传文本框的问题

<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/>

对比一下第二种简单方便问题解决

上一篇:使用J2ME MMAPI开发移动多媒体应用技术

下一篇:Swing指南:Spinner Model Controls(组图)