...
大前端

css、js实现网页内容禁止选中,禁止网页选择文字

CSS

*{
    moz-user-select: -moz-none;
    -moz-user-select: none;
    -o-user-select:none;
    -khtml-user-select:none;
    -webkit-user-select:none;
    -ms-user-select:none;
    user-select:none;
}

通过body标签

<body oncontextmenu="return false;" onselectstart="return false">
//前面一句是禁止右键,后面一句是禁止复制。

通过js

//禁止页面选择以及鼠标右键
document.oncontextmenu=function(){return false;}; 
document.onselectstart=function(){return false;};
jQuery无缝滚动插件liMarquee js-实现文字滚动JQuery插件 marquee.js Marquee标签的jquery替代
biu biu biu
android 挂载可读写system分区 Read-only file system Linux命令大全(手册) Content-Type 对应的格式 Ubuntu20.04 设置开机自启动 github无法访问,访问速度慢解决