就是 <input type = file onkeypress= "return false ">
我加了一个onkeypress= "return false "。这样用户就不能从键盘输入文字了,但是用户可以把文字粘贴进来,或者选择完文件以后用backspace删除一些文字,怎么禁止这些操作呢???
------解决方案--------------------
<script>
function doClick(obj){
obj.readOnly=false;
setTimeout( 'document.getElementById( "aaa ").readOnly = true ',1);
}
</script>
<input type = file id=aaa readonly onclick= "doClick(this) ">