<html:file property="upload" size="60" onkeydown="return false"/>

解决方案 »

  1.   

    也可以用下面的,屏蔽右键,不能copy和粘贴
    <input type="file" onpaste="return false" onkeypress="return false" oncontextmenu="return false;">
      

  2.   

    oncontextmenu 只能在<input type="file“>中使用,不能再<html:file>的struts标签中使用
      

  3.   

    用onkeydown="return false"光标应该就看不到的了