双击禁止选中文本

来源:互联网 发布:windows phone7.8评测 编辑:程序博客网 时间:2024/05/30 23:01
//双击禁止选中文本var clearSelection=function(){        if(document.selection&&document.selection.empty){            document.selection.empty();        }else if(window.getSelection){            var sel=window.getSelection();            sel.removeAllRanges();        }    };    //调用    $(element).bind("dblclick",function(event){        clearSelection();    });
0 0
原创粉丝点击