Java web项目需求需要做一个在页面中,鼠标隐藏,来浏览页面,让客户不能点金页面
重要代码:
$(‘*‘).css(‘cursor‘,‘none!important‘);
示例:
<style type="text/css">
*{cursor:none;}
</style>
这样页面就看不到鼠标的样子了。但是鼠标左右键还能出来。
时间: 2024-10-12 23:00:44
Java web项目需求需要做一个在页面中,鼠标隐藏,来浏览页面,让客户不能点金页面
重要代码:
$(‘*‘).css(‘cursor‘,‘none!important‘);
示例:
<style type="text/css">
*{cursor:none;}
</style>
这样页面就看不到鼠标的样子了。但是鼠标左右键还能出来。