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