移动端禁止缩放 三种方式禁止内容选中/复制

对于常用操作的记录

移动端禁止缩放

只需要添加meta信息即可实现。


禁止选中/复制

css方式

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

body标签方式


js方式

document.oncontextmenu=function(){return false;}; 
document.onselectstart=function(){return false;};

你可能感兴趣的:(js,javascript,html)