html设置禁止选中的方法:1、通过在body标签中添加相关属性,代码为【<body "return false;" onselectstart="return false">】;2、在js中添加相关语句。
本教程操作环境:windows7系统、html5版,DELL G3电脑。
html设置禁止选中的方法:
1、通过在body标签中添加如下属性:
<body "return false;" onselectstart="return false">
前面一句是禁止右键的,后面一句是禁止复制的。
2、在js中添加如下两行语句:
//禁止页面选择以及鼠标右键 document.function(){return false;}; document.onselectstart=function(){return false;};
相关学习推荐:html视频教程
Atas ialah kandungan terperinci html如何设置禁止选中. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!