禁止选中文本事件
Posted where there is a will, there i
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了禁止选中文本事件相关的知识,希望对你有一定的参考价值。
由于经常会些写错,为了以后节约时间,记录下:
obj.on(‘click‘,‘.arrow‘,function(ev){ console.log(‘click‘); ev.stopPropagation(); ev.preventDefault(); var rel = $(this).attr(‘rel‘); if( rel && rel <= totalPage && rel>0 ){ getEnjoyData(rel); }; document.onselectstart= function(){return false;};//禁止文本选中 });
以上是关于禁止选中文本事件的主要内容,如果未能解决你的问题,请参考以下文章
鼠标事件 禁止鼠标复制文档contextmenu 禁止鼠标选中文档selectstart