标签:
Java web项目需求需要做一个在页面中,鼠标隐藏,来浏览页面,让客户不能点金页面
重要代码:
$(‘*‘).css(‘cursor‘,‘none!important‘);
示例:
<style type="text/css"> *{cursor:none;} </style>
这样页面就看不到鼠标的样子了。但是鼠标左右键还能出来。
web页面隐藏鼠标
原文地址:http://www.cnblogs.com/1246447850qqcom/p/4799311.html