首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

IE6资料域禁止编辑

2012-09-23 
IE6文件域禁止编辑htmlhead/headbody!--onkeydown contenteditable属性指定一个即可 前者对文本

IE6文件域禁止编辑
<html>
  <head>
  </head>
  <body>
    <!--onkeydown contenteditable属性指定一个即可 前者对文本框亦有用 且有光标
      后者无光标-->
    <input type="file" onkeydown="return false" contenteditable="false"/>
  </body>
</html>

热点排行