放一个透明的DIV或者图片在上面盖住

解决方案 »

  1.   

    <input type="text" readonly UNSELECTABLE="on" value="readonly" onselectstart="self.event.returnValue=false">这样试试,可以不让别人选中~~
      

  2.   

    <input type="text" disabled  UNSELECTABLE="on" value="readonly" onselectstart="self.event.returnValue=false" ID=Text1>
      

  3.   

    添加 unselectable="on" 就可以了,谢谢
      

  4.   

    UNSELECTABLE Attribute Specifies whether an element is prohibited from being selected.
    off Default. Permits selection of the element. 
    on  Prohibits selection of the element.