代码生命

 

制作拖拽效果时,禁止选中(不让拖拽所过区域出来绿块)。

定义选择CSS

.user_select_none{-moz-user-select:none;-webkit-user-select: none;}

禁止:

//IE 系列

document.onselectstart=function(){return false}

//Firefox、Chrome、Safaria

$("div").addClass("user_select_none");

取消禁止:

//IE 系列

document.onselectstart=function(){return true}

//Firefox、Chrome、Safaria

$("div").removeClass("user_select_none");

posted on 2011-05-08 11:15  鬼奴  阅读(285)  评论(0)    收藏  举报

导航