1. 程式人生 > >防止雙擊文字選中

防止雙擊文字選中

if(document.all){
        document.onselectstart= function(){return false;}; //for ie
      }else{
        document.onmousedown= function(){return false;};
        document.onmouseup= function(){return true;};
      }
      document.onselectstart = new Function('event.returnValue=false;');