我用js 做拖动时,在firefox 会出现全选情况,ie下正常, 请高手指点下, 可能是那些原因造成的

解决方案 »

  1.   

    SyntaxHTML <ELEMENT UNSELECTABLE=bUnselectable ... >  
    Scripting N/A Possible ValuesbUnselectable Specifies whether an element is prohibited from being selected.off Default. Permits selection of the element. 
    on Prohibits selection of the element. 
     
      

  2.   

    谢谢大哥阿 , 按你的方法我在firefox 下拖动还是 会选取拖动的过的区域,
    已找的办法了
    <style type="text/css">
    html *{-moz-user-select: none;} 
    </style>