在jsp页面的输入框上怎么实现不可选中输入内容防止复制

解决方案 »

  1.   

    <input name="textfield" type="text" value="不能复制里面的字" oncopy="return false;" oncut="return false;">
      

  2.   

    <input type="text" oncopy="document.selection.empty()" onpaste="return false"  value="测试是否可以复制粘贴"/>这个可以,试了~~
      

  3.   

    不能复制、不能剪切
    <input type="text" oncopy="document.selection.empty()" onpaste="return false" oncut="document.selection.empty()" value="测试是否可以复制粘贴"/>
      

  4.   

    <input type="text" name="不可复制" readOnly/>
    设置为可读状态 就无法复制了